Skip to main content

Posts

Showing posts from June 25, 2006

Specified web server is not running ASP.NET 1.1

Hi friends,       When you try to create or open Web Application in  ASP.NET 1.1, you may receive the following error message:   " Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1. You will be unable to run ASP.NET Web applications or services."        This is a very common error when we run ASP.NET Web Aplications. You face this problem because you have not installed ASP.NET v 1.1 & your web server is configured with it.  MIcrosoft has given a solution of this problem for IIS 6.0. You can see it at : http://support.microsoft.com/default.aspx?scid=kb;en-us;817267   But if you are using IIS 5.1, what will you do ??? In that situation, please try this: 1 . Open .NET command prompt & type aspnet_regiis -i   This command will install ASP.NET v1.1 & also configure your web server. When you will see the message that ASP.NET 1.1 has b...