debugging (newbie)

  • Thread starter Thread starter Ashish
  • Start date Start date
A

Ashish

hi all,
was just wondering when we start debugging asp .net application in vs,
whats the first point of execution (like the main in other
applications), i wanna trace one application to see what its doing,
thanks
 
Hey, in Windows forms it's going to be your {formname}_Load event accessible
by choosing ({formname} Events) from the left drop down menu at the top of
your code screen and choosing Load from the right. In an asp form, it's
going to be your Page_Load event, which is accessible by selecting (Page
Events) from the left drop down menu at the top of your code window and Load
from the right. You can put a insert a breakpoint by clicking to the far
left side of a line of code (in the grey area). You can also right click on
break points and select breakpoint properties to set loop counts and all
sorts of cool stuff.

Nathon Dalton
 
Back
Top