views:

51

answers:

2

Hi,

I installed visual studio 2003 on windows 7.But I am getting following error on when I press the F5 for debugging.

Thanks

Error while trying to run project: Unable to start debugging on the web server. Could not start ASP.NET or ATL Server debugging.

Verify that ASP.NET or ATL Server is correctly installed on the server.

A: 

The cause for this as per microsoft support is -

This problem occurs because the debugger does not send the debug action to IIS when you run the application. The debugger identifies your computer as localhost. However, in IIS, the Web Site Identification of the application is the IP address that you specified

The resolution is as given below -

http://support.microsoft.com/kb/814717

http://forums.asp.net/t/703333.aspx

Sachin Shanbhag
A: 

I found answer :

iis manager -> computer name -> ISAPI and CGI restrictions -> aspnet v1.1... -> select allowed

(dont forget restart IIS.)

onder