Reputation: 131
How to perform Debug after the application deployed in IIS....
Upvotes: 3
Views: 1300
Reputation: 65867
To Attach the ASPNet worker process to your VS IDE
For IIS 6.0 and above - attach w3wp.exe
For earlier versions - attach aspnet_wp.exe
Upvotes: 9
Reputation: 9469
You may also have to install the remote debugger on the target server if it is not the same machine the debugger is installed on. It can be found on the Visual Studio installation disk.
Upvotes: 2
Reputation: 120917
Make sure you run VS as administrator. Then attach the debugger to the w3wp.exe (there may be more than one). You attach to the w3wp.exe process by choosing "Debug->Attach to process". The shortcut is Alt+d Alt+p.
Upvotes: 1