Is there a quick way to attach to process in vs.net 2008 (attaching to the IIS process)?
Everytime I stop the debugger, and want to re-run I have to go to Debug -> attach to process -> choose the aspnet_web.exe
|
Is there a quick way to attach to process in vs.net 2008 (attaching to the IIS process)? Everytime I stop the debugger, and want to re-run I have to go to Debug -> attach to process -> choose the aspnet_web.exe | ||||
|
feedback
|
|
You can record a macro to do it. In VS2005 I did this:
To play back the temporary macro, ctrl-shift-P. It generated the following code in the Macros IDE:
You can convert this to a permanent macro in the Macros IDE and then bind it to a keystroke in the Tools-Options-Keyboard pane. | |||
|
feedback
|
|
Ctrl+Alt+P and select aspnet_web.exe from the list if you're using Win XP. | |||
|
feedback
|