Help: Cant debug ASP.NET code

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

I set a breakpoint in my ASP.NET code (Page_Load). But, when I run the
application it never stops at the breakpoint. Any ideas?
Thanks,
Robert
 
Project -> Properties -> Configuration Properties -> Debugging
Make sure that "Enable ASP.NET" debugging is checked.

~PJ
 
Have you checked to make sure that the Page_Load event is handled and wired
up in the InitializeComponents event?

HTH,

Bill Priess
eCircle Software, LLC
 
This usally happenes when sysmbols are not loaded properly.
What you have to make sure is
1.you are running the application in debug mode and not release mode.
2. Make sure debugging is enabled by right clicking on
Project->Properties->Configuration Properties->Debugging and on right pane
make sure "Enable ASP.NET Debugging" is set to True.

Cheers
nitc3
 
Back
Top