我的示例项目中有一个图像文件。我正在尝试如下 URL。
Application_BeginRequest event
我的文件中有一个Global.asax
。
protected void Application_BeginRequest(Object sender, EventArgs e)
{
}
查询- 当我通过直接输入上面的 URL 来请求上面的图像时,不会触发此事件。
FROM MSDN - HttpApplication.BeginRequest 事件- 当 ASP.NET 响应请求时,作为 HTTP 执行管道链中的第一个事件发生。
I want to make my all request to fire `Application_BeginRequest` Event