gpt4 book ai didi

c# - ASP.Net 请求生命周期 - Application_BeginRequest

转载 作者:太空狗 更新时间:2023-10-29 17:55:21 33 4
gpt4 key购买 nike

我的示例项目中有一个图像文件。我正在尝试如下 URL。

http://localhost:49334/Chrysanthemum.jpg

我的 Global.asax 文件中有一个 Application_BeginRequest 事件

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

查询 - 当我通过直接输入上面的 URL 来请求上面的图像时,这个事件没有被触发。


FROM MSDN - HttpApplication.BeginRequest Event - 当 ASP.NET 响应请求时,作为 HTTP 管道执行链中的第一个事件发生。

I want to make my all request to fire `Application_BeginRequest` Event

最佳答案

问题可能是因为 .jpg 扩展名没有默认映射到 asp.net,而是由 IIS 处理。

如果您使用 IIS7,您可以通过将 runAllManagedModulesForAllRequests 设置为 true 来更改此设置。

<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
...
</modules>
</system.webServer>

如果仍然没有触发此事件,您可以尝试像这样更改 global.asax

<%@ Application Language="C#" %>

<script runat="server">

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

void global_asax_BeginRequest(object sender, EventArgs e)
{

}

</script>

如果您只想处理 .jpg 文件,更好的方法是制作 HTTP 处理程序并在 web 中配置 system.webServer > handlerssystem.web > httpHandlers 部分。配置为 .jpg 请求运行此处理程序。

关于c# - ASP.Net 请求生命周期 - Application_BeginRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10424865/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com