在virto commerce店面的customErrors中,存在defaultRedirect ="〜/ ServerMaintenance.aspx"。 所以在statusCode =" 500"显示ServerMaintenance。 但在statusCode =" 500"我需要显示C500.aspx 我将webconfig更改为
<customErrors mode="On" redirectMode="ResponseRewrite" defaultRedirect="~/ServerMaintenance.aspx">
<error statusCode="500" redirect="~/Status/C500.aspx"/>
</customErrors>
但是在statusCode =&#34; 500&#34;不要显示C500.aspx,并显示并显示包含以下错误的页面:
Server Error in '/' Application.
Runtime Error
Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
我的错误在哪里?
答案 0 :(得分:1)
您的回复上的消息显示您的自定义错误页面上有错误,这就是您无法看到它的原因。尝试关闭自定义错误
<system.web>
<customErrors mode="Off"...
直接向C500.aspx发出请求 - 你应该看看它有什么问题。