Global.asax.cs 为 /.aspx 执行子请求时出错。 Server.Transfer

Posted love-zf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Global.asax.cs 为 /.aspx 执行子请求时出错。 Server.Transfer相关的知识,希望对你有一定的参考价值。

x

后台代码

Global.asax.cs

protected void Application_Error(object sender, EventArgs e)Server.Transfer("/Error.aspx", true);

跳转到错误页面的时候,直接报错:"为 /Error.aspx 执行子请求时出错"

 

我的解决方案

所以问题就是.

Global.asax.cs中的Application_Error执行"Server.Transfer("/Error.aspx", true);"没毛病...

有毛病的是Error.aspx页面,其实错误也已经提示了...只是后知后觉,不懂意思.

 

 

x

 

以上是关于Global.asax.cs 为 /.aspx 执行子请求时出错。 Server.Transfer的主要内容,如果未能解决你的问题,请参考以下文章

Global.asax.cs介绍

MVC4 中 Global.asax.cs 页面中的问题

在 global.asax.cs 中分配后未填充 Insights InstrumentationKey

MVC 应用程序 - 从 Global.asax.cs 检索 LoaderExceptions

ASP.NET MVC:如何在 Global.asax.cs 中的 Application_Start() 中检测浏览器宽度

为啥我在 Global.asax.cs 中的 Application_BeginRequest 没有被自托管的 WCF 服务调用