9

如何使用 Global.asax 的PostAuthenticateRequest事件?我正在关注本教程,它提到我必须使用PostAuthenticateRequest事件。当我添加 Global.asax 事件时,它创建了两个文件,标记和代码隐藏文件。这是代码隐藏文件的内容

using System;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;

namespace authentication
{
    public class Global : System.Web.HttpApplication
    {    
        protected void Application_Start(object sender, EventArgs e)
        {    
        }

        protected void Session_Start(object sender, EventArgs e)
        {    
        }

        protected void Application_BeginRequest(object sender, EventArgs e)
        {
        }

        protected void Application_AuthenticateRequest(object sender, EventArgs e)
        {    
        }

        protected void Application_Error(object sender, EventArgs e)
        {    
        }

        protected void Session_End(object sender, EventArgs e)
        {    
        }

        protected void Application_End(object sender, EventArgs e)
        {    
        }
    }
}

现在当我输入

protected void Application_OnPostAuthenticateRequest(object sender, EventArgs e)

它被成功调用。现在我想知道PostAuthenticateRequest是如何绑定到这个Application_OnPostAuthenticateRequest方法的?如何将方法更改为其他方法?

4

1 回答 1

16

魔术...,一种称为Auto Event Wireup的机制,您可以编写相同的原因

Page_Load(object sender, EventArgs e) 
{ 
} 

在您的代码隐藏中,该方法将在页面加载时自动调用。

System.Web.Configuration.PagesSection.AutoEventWireup属性的 MSDN 描述

获取或设置一个值,该值指示 ASP.NET 页面的事件是否自动连接到事件处理函数。

AutoEventWireupis时true,处理程序会在运行时根据它们的名称和签名自动绑定到事件。对于每个事件,ASP.NET 搜索根据模式命名的方法Page_eventname(),例如Page_Load()Page_Init()。ASP.NET 首先查找具有典型事件处理程序签名(即,它指定ObjectEventArgs参数)的重载。如果未找到具有此签名的事件处理程序,ASP.NET 将查找没有参数的重载。此答案中的更多详细信息。

如果您想明确地执行此操作,您将改为编写以下内容

public override void Init()
{
    this.PostAuthenticateRequest +=
        new EventHandler(MyOnPostAuthenticateRequestHandler);
    base.Init();
}

private void MyOnPostAuthenticateRequestHandler(object sender, EventArgs e)
{
}
于 2011-01-13T07:59:06.840 回答