|
Back
Error: Visual Studio .NET has detected that the specified Web server is not running ASP.NET version 1.1
One really common error when you are opening an ASP.net site using Visual Studio 2003 is:
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.
The resolution is straighforward, you just need to re-register the ASP.net user account. To do so type the following from the command prompt: %windir%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
This will install the ASP.net user account and register the correct version of ASP.net with IIS.
Note that the above is based on .net 1.1 version, for other versions such as ASP.net 2 just alter the version number.
Back
|