Ask a Question related to ASP.NET General, Design and Development.
-
Robert Millman #1
Debug step into event handlers
under ASP.NET, single stepping in debug mode appears not
to stop within event procedures. i.e. 1) Create web page
with submit button and event procedure for the click
event in the code behind page, 2) Breakpoint in the
Page_Load, 3) debug the web page and click the submit
button, 4) "step into" under debug several times, 5) The
debugger does not stop at any of the statements in the
click event handler. A breakpoint is needed in each
event routine that you wish to single step through,
rather than the debugger simply stopping at each line of
your code (this was the behavior in VS 6.0 and in VB 6.0)
Anyone know how to get this to work? Seems to me to be a
significant flaw in the debugging capabilities.
Robert Millman Guest
-
Event handlers: How exactly do they work?
I'm working on a C# serial connection. I'm talking to a device that's running embedded C. I have an event handler that handles incoming data.... -
Missing Event Handlers
I created a custom control derived from DataGrid. It work well, but I have the following problem: Sometimes, the event handlers that are declared... -
event handlers
Does anyone know how to cause the cursor to advance to the next field on a form after the first field has been filled? -
Losing event handlers
I have written an ASP.NET app with C# code-behind. While modifying the code and testing it, I find that I will sometimes lose all event handlers... -
crazy event handlers!
it is in the buildTable(), which is executed in the Page_PreRender() event -Trevor "MikeB" <mailbox.google@mailnull.com> wrote in message...



Reply With Quote

