Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已将 web.config 配置为在网站上发生异常时显示“error.htm”错误页面。但是当出现 asp.net 编译错误时,我无法显示该页面。我如何做到这一点。我在 IIS 7 上运行。
为什么在实时站点上会出现编译错误?
但是,如果没有测试,我无法想象您尝试做的事情是可能的。如果它不能编译它就不能运行任何代码。
将 mode 属性设置为 On,这样任何人都不会看到错误详细信息。
<customErrors mode="on" defaultRedirect="~/errorpage.aspx" />