Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello There

i have created Project with Visual Studio 2003 and when i try to run my project i faced this problem .

i was search about it and read all solution that related to this problem but no luck

so please any help will be appreciated
Posted

Take a look: http://support.microsoft.com/kb/306156/en-us[^]

CSS
When you debug an ASP.NET application in Visual Studio .NET, you may receive the following error message:
Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged

For ASP.NET projects, verify that you have a valid project file called 'Web.config' for the URL specified and 'debug' is set to 'true' in that file.
For ATL Server projects, verify that the 'DEBUG' verb is associated with your ISAPI extension.
Would you like to disable future attempts to debug ASP.NET pages for this project?


CSS
This error can occur primarily because:

    The ASP.NET Application does not have a Web.Config file.
    The Execute Permissions property for the current project folder in Internet Services Manager is set to None.



XML
To resolve this problem, use one of the following methods, depending on your circumstances:

    If your project does not have a Web.config file, add a Web.config file to the directory that contains the ASP.NET application. If you are working in Visual Studio .NET, right-click the project in Project Explorer, click Add New Item, and then click Web Configuration File.
    If your project already has a Web.config file, and if the debug attribute is set to true in the <compilation> section of the Web.config file, follow these steps to set the Execute Permissions property for the project folder:
        Start Internet Services Manager, and then click the project that you are trying to debug.
        Right-click the project, and then click Properties.
        Click the Directory tab.
        If None is selected in the Execute Permissions list, click Scripts only, and then click Apply.
 
Share this answer
 
thank you for replay but i have done all of thi ideas and till now i can not debug my project
 
Share this answer
 
Comments
ArunRajendra 16-Jul-14 5:59am    
Don't post as solution use Question button under the solution.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900