0

我想在其他函数中处理 BeginRequest 事件,如下所示:

public class Global : System.Web.HttpApplication
{
    protected void Application_Start(object sender, EventArgs e)
    {
        this.BeginRequest += (new EventHandler(MyBeginRequest));
    }
 ....
 }

但它没有用!有人能告诉我怎么做吗?谢谢!

4

1 回答 1

2

你可以只使用Application_BeginRequest

public class Global : System.Web.HttpApplication
{
     protected void Application_BeginRequest()
     {
        // do work
     }
 }
于 2013-07-01T02:54:51.297 回答