惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

博客园 - 似曾相识

建立用户体验Drupal网站之分析阶段 Drupal 6.13和5.19发布 关于安装IIS NET开发几时有?把鼠标问VS2005! 走自己的路 - 似曾相识 - 博客园 本人有问题请教高手,谢谢! C#中文本如何写入数据库?(着急!多谢!) 安装动网论坛数据库的问题 爱情心理测试 变形金刚 章立民老师北京中关村图书大厦讲座 C#文本写入数据库(未解决) 吃西餐的礼仪 固定LABEL显示的行宽 把aspx文件生成html文件 如何固定GridView中的列宽? 网站首页首频图片替换代码 寻找.NET开发团队和项目 VS2005中显示代码行
关于"Server Error in '/' Application"(着急!!!)
似曾相识 · 2007-07-20 · via 博客园 - 似曾相识

在本地调试还好好的,上传上去就出现这样的问题了.极度郁闷,不知道如何解决,敬请您的高见!谢谢!
 

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>