wcat8270 - 2014/3/27 8:16:35
Server Error in '/' Application
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>
wcat8270 - 2014/3/27 8:17:55
scstjcy - 2014/3/27 9:02:16
你这网站都被提示有安全风险了,还是先把不安全的东西清除再说吧。
wcat8270 - 2014/3/27 14:42:09
不是这个意思的吧
wcat8270 - 2014/3/27 14:43:09
怎么有个图片的:L
xiyou - 2014/3/27 17:24:04
感觉是主机问题,应该你主机都不支持asp.net,你这个好像是unix系统