Debug C# Web Application

How to debug C# Web Application?

Questions by Deepak Shelake

Showing Answers 1 - 6 of 6 Answers

Cris

  • Mar 3rd, 2016
 

Use Firebug for Firefox

  Was this answer useful?  Yes

Samwise Galenorn

  • Nov 25th, 2016
 

To debug C# Web App, you need Visual Studio, and a local IIS Server 6.0 or above. First, load the code into Visual Studio, next fire up the worker process by invoking the web app. Once the worker process is running, attach Visual Studio to the worker process, via the menu command Debug... >> Attach to Process.... The name of the process should be w3wp.exe.
Or, if you have all of the code on your computer, you can run the web app through the Visual Studio IIS Express, and debug the code directly with breakpoints.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions