Reputation: 837
I installed Visual Studio 2003 on Windows 7 but I am getting the following error on when I press the F5
for debugging.
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.
What does that mean and how do I fix it?
Upvotes: 2
Views: 10619
Reputation: 171
Simple steps to solve this error!! Make sure the following things are intact:
Here's a link that will help you setup ASP.Net 1.1 and its requisites, in case, the above didn't help you. How to setup asp.net v1.1
Upvotes: 0
Reputation: 9
May be you have to install another server on your computer, so it conflict with IIS server. You have to change another server port address or remove from your computer.
Upvotes: 0
Reputation: 3978
I tried all the options but in vain. My solution was:
Mine all the above were messy. I did the same and it worked.
Upvotes: 0
Reputation: 837
I found answer :
iis manager -> computer name -> ISAPI and CGI restrictions -> aspnet v1.1... -> select allowed
(dont forget restart IIS.)
Upvotes: 0
Reputation: 55499
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
Upvotes: 1