Quantcast
Channel: wonald.com » admin
Viewing all articles
Browse latest Browse all 10

How to debug ASP.NET Application_Start

$
0
0

In case you are ever in a situation where you need to debug code triggered in the ASP.Net Application_Start event before you have time to attach a debugger and your website can’t run by simply starting it in Visual Studio using Run/F5, you can do so by using ‘Restart’ on the website instead of recycling the app pool the website uses in IIS.

 

Issue:

You set a breakpoint in Application_Start, but the breakpoint never gets hit.

 

Reason:

When you are debugging your ASP.NET website in IIS, the Application_Start event fires before the Visual Studio debugger has a chance to attach to the IIS process.

 

Solution:

  1. Set your breakpoint in Application_Start
  2. Start the Visual Studio debugger (F5) or manually attach the process (in the menu select Debug > Attach to process)
  3. (If running via pressing ‘F5′) Wait for the Visual Studio debugger to open your website in the default web browser (this signifies it has attached to the IIS process).
  4. Open IIS Manager.
  5. Select your website (left pane). If you are debugging an application hosted by a parent website, select the parent website.
  6. Click the [Restart] button.
  7. Switch back to the web browser and refresh your website (F5).
  8. The Visual Studio debugger will now hit the breakpoint you set in Application_Start.

 


Viewing all articles
Browse latest Browse all 10

Trending Articles