virto commerce 店面的自定义错误页面
custom error page for virto commerce storefront
在 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="500" 中不显示 C500.aspx,而是显示 And shows page with following error :
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.
我的错误在哪里?
您的回复消息说您的自定义错误页面上有错误,这就是您看不到它的原因。尝试关闭自定义错误
<system.web>
<customErrors mode="Off"...
并直接向 C500.aspx 发出请求 - 你应该看看它有什么问题。
在 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="500" 中不显示 C500.aspx,而是显示 And shows page with following error :
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.
我的错误在哪里?
您的回复消息说您的自定义错误页面上有错误,这就是您看不到它的原因。尝试关闭自定义错误
<system.web>
<customErrors mode="Off"...
并直接向 C500.aspx 发出请求 - 你应该看看它有什么问题。