asp.Net   发布时间:2022-04-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Asp.net – 尝试访问工作网页时出错大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经创建了一个asp.net网页,并将其上传到网络服务器。但是,当我尝试远程查看页面时,我收到有关web.config文件中的customerror标记的错误。该页面在本地工作,没有错误或警告。另外,如果我以.html文件的形式上传页面,我可以远程查看。 @H_673_2@我已经看到很多其他人出现这个错误,但是“解决方案”只是将customErrors标签改为“关闭”,我已经做了并且不起作用,你知道网络服务器有什么问题吗?可能是这里的问题?

这是错误页面:

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>

这里是我的web.config文件:

<?xml version="1.0"?>
<configuration>

  <system.web>
    <customErrors mode="Off"/>
  </system.web>

  <system.web>
    <compilation debug="true"/>
    <authentication mode="None"/>
  </system.web>
</configuration>

解决方法

您应该只有一个< system.web>在你的配置文件。 @H_673_2@ @H_673_2@
<system.web>
    <customErrors mode="Off"/>
    <compilation debug="true"/>
    <authentication mode="None"/>
  </system.web>
</configuration>

大佬总结

以上是大佬教程为你收集整理的Asp.net – 尝试访问工作网页时出错全部内容,希望文章能够帮你解决Asp.net – 尝试访问工作网页时出错所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。