首页 新闻 会员 周边

Server Error in '/' Application. 急急急!!

0
悬赏园豆:20 [已解决问题] 解决于 2009-04-17 15:41

 

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".

<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>


Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>

我把 <customErrors mode="Off"/>在web.config也添加过了还是照旧,在本机运动都是良好的,拷贝到其他计算机上也一样,上传到服务器就出现上面的问题。

Steven2的主页 Steven2 | 菜鸟二级 | 园豆:210
提问于:2009-04-16 14:39
< >
分享
最佳答案
1

先用本机的 IIS 测试,不要用 VS 内附的 Web server,
並配置 <customErrors mode="Off"/>,以將真實的錯誤原因顯示出來,看是否仍会一样出错。

有可能是文件夹未开放写入权限,或有安全配置上的错误。

或远端机器上 IIS 的 .NET 版本、ajax 版本不符合。

WizardWu | 小虾三级 |园豆:1402 | 2009-04-16 15:00
其他回答(3)
3

注意 <customErrors mode="Off"/> 不能放到 <!--   -->里面。

Azuresong | 园豆:3565 (老鸟四级) | 2009-04-16 15:42
1

错误已经被你关闭了

开启<customErrors mode="Off"/>

建议做个错误日志信息表

jowo | 园豆:2834 (老鸟四级) | 2009-04-16 16:43
1

添加了虚拟目录后,右击虚拟文件夹,选择“转换成应用程序” (convert  to application)

po-A | 园豆:268 (菜鸟二级) | 2013-11-20 14:28
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册