This error reads:
The web server is not configured correctly. See help for common configuration errors. Running the web page outside of the debugger may provide further information.
Possible causes of this error include:
Trying to debug a .NET web application that was copied to a different machine, manually renamed, or moved.
Not having enough IIS connections. (See "Limiting Connections" in the IIS Operations Guide.)
Check to see that the DEBUG verb is associated with .aspx. See How to: Associate DEBUG Verb with Extension for more information.
Check to see that the Web site has been configured as an Application in IIS.
From the Start menu, choose Programs, then Administrative Tools, and click Internet Information Services.
In the Internet Information Services dialog box, click the tree control for your machine, open the Web Sites folder, and find your web site.
Right-click Web Site and choose Properties.
In the Web Site Properties window, select the Directory tab.
Under Application Settings, look for the Remove or Create button.
If the button says Remove, your website is already configured as an application.
If the button says Create, click the button to configure your website as an application.
Click OK.
Verify that the DEBUG verb is associated with your ISAPI extension. See and How to: Associate DEBUG Verb with Extension for more information.
I stumbled on this error using VS2005 SP1. The reason for not being able to debug was the below debug setting in my web.config was set to false , make sure it is set to true .
<system.web> <!-- DYNAMIC DEBUG COMPILATION Set compilation debug="true" to insert debugging symbols (.pdb information) into the compiled page. Because this creates a larger file that executes more slowly, you should set this value to true only when debugging and to false at all other times. --> <compilation defaultLanguage="c#" debug="true" />
SYMPTOMS
CAUSE
This issue started when I began using the .NET Framework 2.0 and Visual Studio 2005, in conjunction with IIS 6. Anytime I installed/updated IIS after the .NET Framework was already installed, I got the previously mentioned errors.
SOLUTION
NOTE: This is written for inexperienced developers, so please bear with the overly simplified description.
The command prompt will show that some work is being done. Once it has completed, the problem should be fixed.
-----------------------------------------------Even the above doesn't work---------------------------------------------------------------------------------------------
what should be done., I use windows server 2003 R2 Standard edition / VS 2005 Team. / Do please help