I am debugging an ASP.Net C# application in Visual Studio 2010, the application is running and execution is currently stopped at a breakpoint. How can I stop the page execution without "Terminate All" or killing the debugging process altogether, similar to what would happen if an unhandled exception was thrown? The "Break All Cntl+Alt+Break" option is grayed out in the Debug menu. I want to stop the app from running but not have to go through a compile/start again.
EDIT: I want execution to stop, not break, so that the page finishes loading and I don't continue running the application from the breakpoint forward.
I've looked through the Breakpoints panel, the Debug menu and have right clicked all over but still haven't found the right option.
Thanks in advance.