如何使用Global.asax的 PostAuthenticateRequest 事件?我正在关注this tutorial,并提到我必须使用 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 方法?如何将方法更改为其他方法?
答案 0 :(得分:15)
Magic ...,一种名为 Auto Event Wireup 的机制,与你可以编写的原因相同
Page_Load(object sender, EventArgs e)
{
}
在您的代码隐藏中,该方法将在页面加载时自动调用。
MSDN description for System.Web.Configuration.PagesSection.AutoEventWireup
property:
获取或设置一个值,该值指示ASP.NET页面的事件是否自动连接到事件处理函数。
当AutoEventWireup
为true
时,处理程序会根据其名称和签名在运行时自动绑定到事件。对于每个事件,ASP.NET都会搜索根据模式Page_eventname()
命名的方法,例如Page_Load()
或Page_Init()
。 ASP.NET首先查找具有典型事件处理程序签名的重载(即,它指定Object
和EventArgs
参数)。如果找不到具有此签名的事件处理程序,ASP.NET将查找没有参数的重载。 this answer中的更多详细信息。
如果您想明确地执行此操作,则可以编写以下内容
public override void Init()
{
this.PostAuthenticateRequest +=
new EventHandler(MyOnPostAuthenticateRequestHandler);
base.Init();
}
private void MyOnPostAuthenticateRequestHandler(object sender, EventArgs e)
{
}