我想在其他函数中处理 BeginRequest 事件,如下所示:
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
this.BeginRequest += (new EventHandler(MyBeginRequest));
}
....
}
但它没有用!有人能告诉我怎么做吗?谢谢!