Ranga
Ranga

Reputation: 131

To Debug the Application that deployed in IIS

How to perform Debug after the application deployed in IIS....

Upvotes: 3

Views: 1300

Answers (3)

RameshVel
RameshVel

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

Johann Blais
Johann Blais

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

Klaus Byskov Pedersen
Klaus Byskov Pedersen

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

Related Questions