You must Sign In to post a response.
  • Category: [Competition Entries]

    How to resolve error :Unable to start debugging on the web server.


    Are you looking for a way to resolve error Unable to start debugging on the web server on IIS 7 ? then read this thread to know how to resolve it



    I am getting "Error while trying to run project: Unable to start debugging on the web server. The project is not configured to be debugged" while update site on IIS 7.0.
    I tried http://blogershub.com/Archive/2014/2/Unable-to-start-debugging-on-the-web-server-The-project-is-not-configured-to-be-debugged

    Above post lead to start my code once but now again showing same issue.
  • #740665
    There could be copuple of reason for this error
    1. The ASP.NET Application does not have a Web.Config file.
    2. The Execute Permissions property for the current project folder in Internet Services Manager is set to None
    you need to set it as 'Scripts Only' using following steps
    1. open IIS and then click the project that you are trying to debug.
    2. Right-click the project, and then click Properties.
    3. Click the Directory tab.
    4. If None is selected in the Execute Permissions list, click Scripts only, and then click Apply.
    OR
    try to re-register asp.net application on IIS using following command
    1. Click on start -> Run -> C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i
    you can change version from (V2) to your need

    you can check below link to resolve the issue
    http://www.aspdotnet-suresh.com/2011/07/unable-to-start-debugging-on-web-server.html

    Thanks
    Koolprasd2003
    Editor, DotNetSpider MVM
    Microsoft MVP 2014 [ASP.NET/IIS]


  • Sign In to post your comments