7

I want to handle application shutdown gracefully when stopping debugging or stopping the IIS Express web site, but I cannot seem to get Application_End to run.

Triynko
  • 18,766
  • 21
  • 107
  • 173

2 Answers2

13

If you're debugging using IIS Express, the Application_End function will execute if you right-click on the IIS Express icon on the tray, select the proper site from the context menu and stop it. This will end your debugging session in a way that does execute the Application_End method.

k3davis
  • 985
  • 12
  • 29
1

Try to make a change in web.config and save.

Kaveh Hadjari
  • 217
  • 1
  • 10