如果我的代码出现问题,我试图显示自定义错误页面,所以我尝试了以下
1)将以下内容放在web.config文件中
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
<customErrors mode="On" defaultRedirect= "Error.aspx">
</customErrors>
</system.web>
2)并尝试将以下内容放入Global.asax.cs
protected void Application_Error(object sender, EventArgs e)
{
Exception ex = Server.GetLastError();
Server.ClearError();
Response.Redirect("Error.aspx");
}
3)我试过它在页面级别如下
ErrorPage="~/Error.aspx"
他们都没有工作,我显示自定义错误页面的主要目的是当从数据库中检索到一个值时它应该绑定到旧记录的屏幕上我们没有什么元素所以我想显示自定义错误消息,请帮助我/建议我(我正在使用.net框架4.5)