I am developing an ASP.NET application, and sometimes it's a consuming time process to find the exact line of code that will execute at the server after the user makes an action in a form (clicking somewhere,writing, moving the mouse, etc): You've to guess where to put a breakpoint for the debugger to stop.
I know I can manually set breakpoints in the controller, or in the Load() events, etc. But I'd like to have a 'friendly advice' from VS (call me lazy)
My question is: In Visual Studio, can you 'tell' it: "Hey Visual Studio, good boy... Would you please stop the execution at the first instruction at the server ? I don't know what will be executed, but as you are smarter than me, I want you to show me that magic line, and stop at it, would you please?".
Thanks in advance,
Roger