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.
在 MVC3 中,Global.asax.cs 中有一个 Application_Error 事件处理程序
MVC4 没有这个事件处理程序。在 MVC4 中是否有用于处理此类事件错误的新功能?
是的,它确实有一个 Application_Error 事件,但与其他事件一样,您必须自己实际创建它。只需将其添加到 global.asax
void Application_Error(object sender, EventArgs e) { .... }