zl程序教程

您现在的位置是:首页 >  后端

当前栏目

ASP.NET MVC doesn't call global.asax' EndRequest

NetASPMVC &# 39 call global doesn
2023-09-11 14:14:17 时间

ASP.NET MVC doesn't call global.asax' EndRequest

回答1

The HttpApplication instance that is represented by your global.asax file is a single instance that only represents the first HttpApplication object. It is not guaranteed that this instance of the HttpApplication will be used for any other request.

You need to override the Init() method in global.asax and in that method hook up any events that you want:

public override void Init() {
    base.Init();

    EndRequest += MyEventHandler;
}

Please refer to this MSDN article for more info on the HttpApplication object.