Debugging Problems

  • Thread starter Thread starter Philip Townsend
  • Start date Start date
P

Philip Townsend

I have a web project and am trying to use the debugger. I am getting an
error message saying that it is unable to start debugging because the
project is not configured to do so. The only suggestion made is to
verify that the debug element in the web.config file is set to 'true.' I
checked this and it is set to true. There seems to many confusing issues
surrounding debugging ASP.NET projects. Is there anythign else I should
be checking? This seems to be a nagging problem that rears its ugly head
totally at random... Can anybody help?
 
I have a web project and am trying to use the debugger. I am getting an
error message saying that it is unable to start debugging because the
project is not configured to do so. The only suggestion made is to
verify that the debug element in the web.config file is set to 'true.' I
checked this and it is set to true. There seems to many confusing issues
surrounding debugging ASP.NET projects. Is there anythign else I should
be checking? This seems to be a nagging problem that rears its ugly head
totally at random... Can anybody help?

Also check that:
-you compiled with the Debug configuration
-you have the rights to debug, and gave the good rights (see the MSDN about
this).
 
Back
Top