Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 razor 中,我们有 _appstart 和 _pagestart。
当会话结束而不去 Global.asax 时,是否可以使用 _sessionend 之类的东西来工作?
_appstart并且_pagestart专门用于连接到页面逻辑和数据 - 它们并不是真正用于Session. 他们也没有_*end同行。
_appstart
_pagestart
Session
_*end
要挂接到会话结束,您必须使用global.asax.cs,就像使用 webforms 一样。
global.asax.cs