Reputation: 9975
If I start running my asp.net WebForms app from the VS2008 IDE in debug mode, is there a way I can tell it to then quit the debugging but keep on running? Often times, I start in debug mode, then after I'm done with the debugging, I want it to keep on running, but to come out of debug mode.
Upvotes: 3
Views: 1253
Reputation: 352
As others have already mentioned, Debug -> Detach should work. As an alternative, if you set up your project to run on your local IIS instead of visual studio's defualt web server, your site should stay open after you stop your debugger. In the Web tab of the properties for your web application project there is an option to use the local IIS or a custom server instead of the default visual studio one.
Upvotes: 1
Reputation: 4696
Upvotes: 0
Reputation: 12816
There is an option in the Debug menu to detach the deubgger ("Detach All").
This will detach the debugger and leave the debugged application running.
Upvotes: 4
Reputation: 258188
You can go to Debug > Detach All in the menu in VS2008 (Express edition, at least).
Upvotes: 2