在服务器上部署Web应用程序会导致此错误

时间:2011-04-04 12:16:38

标签: asp.net iis

hello guys i am facing this error

enter image description here

如何修复它。 我的ASP.net网站在本地运行良好。

2 个答案:

答案 0 :(得分:1)

将其设置为OFF并查看错误是什么。默认情况下,该部分在Web.Config中进行了注释。在web.config文件中查找部分自定义错误,取消注释并将其设置为off,以查看生产中的错误。

<强>更新

<system.web> -- inside this section just add the line below. 
                If its already there remove existing custom errors and use this
    <customErrors mode="Off" />
</system.web>

答案 1 :(得分:1)

这种情况正在发生,因为某些配置与您的本地计算机和部署的计算机不同。由于此原因,此处会抛出错误。但实际上您无法看到错误消息的详细信息,因为您的web.config文件可能将customErrors设置为仅在本地计算机中显示或没有自定义错误标记。我建议您在web.config文件中将其转为“关闭”,只是为了在已部署的计算机上看到正确的错误消息。