| 发表于:2007-04-18 13:07:105楼 得分:0 |
上面的问题已经解决 是没有文件. 可是又有新问题 就是有的页面能打开 有的就不能打开 出现的错误是 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> 也可以访问http://hwj99.com | | |
|