如何调试ASP.net中的HttpApplication.Start方法?

时间:2011-09-07 02:10:19

标签: asp.net debugging

  

可能重复:
  it is possible to Debug Global.asax?

我想调试Global.asax中的HttpApplication.Start方法。不幸的是,调试器很少会在方法开始时达到断点,即使我做了一个干净的重建或iisrest?有没有办法强制重新运行此方法?

1 个答案:

答案 0 :(得分:2)

Here是关于在Visual Studio中使用ASP.Net Web Server调试Global.aspx.cs Application_Start()的简要说明。

另一种方法是强制突破,如下所示:

Protected void Application_Start(object sender, EventArgs e) 
{
    System.Diagnostics.Debugger.Break();            
}