我想在其他函数中处理BeginRequest事件:
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
this.BeginRequest += (new EventHandler(MyBeginRequest));
}
....
}
但它不起作用! 有人可以告诉我怎么样?thx!
答案 0 :(得分:2)
您可以使用Application_BeginRequest
:
public class Global : System.Web.HttpApplication
{
protected void Application_BeginRequest()
{
// do work
}
}