开发者

what kind of error this Server Error in '/' Application

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this ap开发者_JAVA技巧plication 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 tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".

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 configuration tag to point to a custom error page URL.


That is the default generic error message in ASP.NET.

Re the more specific "what kind of error"; impossible for us to say; it could be a configuration error in web.config, it could be problems talking to the database, it could simply need a hug and some quiet time. Like the message says, either enable remote debug output, or look at the site from the server, and it'll tell you what is actually happening. Or look in the error log (event-viewer by default), which is perhaps more useful.

Note you can replace the error page with something more... user friendly if you like. Like the lolcatz on stackoverflow.com.


Edit the web.config file to have this

  <system.web>
      <customErrors mode="RemoteOnly"/>
   </system.web>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜