标签: c# asp.net-mvc
我的应用程序中有许多不同的布局,如果页面上出现错误,我想使用与发生错误的页面相同的布局。
是否可以从Application_Error方法中获取布局中的值,以便在返回错误视图时设置此布局?
protected void Application_Error(object sender, EventArgs e) { //Logic to gather error and redirect to error controller }