首页 > 网站 > 建站经验 > 正文

web.config配置错误解决方法

2019-11-02 13:51:14
字体:
来源:转载
供稿:网友
  提示:“/”应用程序中的服务器错误。
  该提示你程序在运行中已经产生异常,但是异常是怎么来的,没有显示出来,如果你要显示你程序中是哪里出现了错误,就在web.config中添加上面提示的配置:
  <configuration>
  <system.web>
  <customErrors mode="Off"/>
  </system.web>
  </configuration>
  如果要在出错时转向你所自己做的错误页面的话,可以在如下节点设置:
  <configuration>
  <system.web>
  <customErrors mode="RemoteOnly" defaultRedirect="(你自己做的错误页地址)"/>
  </system.web>
  </configuration>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表