如何附加到全局BeginRequest事件?

时间:2013-07-01 02:50:23

标签: c# asp.net

我想在其他函数中处理BeginRequest事件:

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

但它不起作用! 有人可以告诉我怎么样?thx!

1 个答案:

答案 0 :(得分:2)

您可以使用Application_BeginRequest

public class Global : System.Web.HttpApplication
{
     protected void Application_BeginRequest()
     {
        // do work
     }
 }