2015-03-11

Breakpoints

Getting breakpoints to work with Classic ASP and ASP.NET 2.0, with IIS running locally.
  1. Ensure web.config has debug="True"
  2. Ensure that you are attaching to the correct w3wp.exe process
  3. Ensure that the App Pool configuration that is associated with this site in IIS has Maximum Worker Processes set to 1 (found in the Process Model section).
  4. Ensure that the ASP configuration for the site in IIS allows Client and Server debugging (found in the Debugging Properties section).
  5. Ensure that machine.config does not have retail="True" in the deployment tag. The default for this attribute is false, which will permit debugging.

No comments:

Post a Comment