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>
真实原因:.net装了以后,没有正常注册到iis
解决办法:
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i
Asp.Net 程序错误Runtime Error原因与解决
2019-07-16 21:43服务器之家 ASP.NET教程
提示这个,不管怎么改配置文件的设置都不行,下面是修正方法,大家可以试试。
延伸 · 阅读
- 2022-03-10Runtime.getRuntime().exec 路径包含空格的解决
- 2022-03-09java Runtime如何执行多条命令
- 2022-03-09java使用Runtime执行系统命令遇到的问题
- 2022-03-05Asp.Net(C#)使用oleDbConnection 连接Excel的方法
- 2022-03-03解决MySQL添加新用户-ERROR 1045 (28000)的问题
- 2022-02-24织梦DEDECMS伪静态下某些栏目显示:”Request Error!”
- ASP.NET教程
使用Lucene.NET实现站内搜索
提到Lucene,想必大家都有所耳闻,已经是数年前就出现的开源技术。很多站点都是利用它搭建自己网站的站内搜索。由于最近也在做数据检索方面的东西,...
- ASP.NET教程
DropDownList添加客户端下拉事件操作
我们知道,DropDownList下拉框是一个服务器控件,有时候,有些朋友为了方便绑定DropDownList下拉框的选项,但又想在DropDownList实现客户端的下拉事件,那该怎...
- ASP.NET教程
Microsoft Visual Studio 2010下如何添加命令提示行
这篇文章主要介绍了Microsoft Visual Studio 2010下如何添加命令提示行的相关资料,需要的朋友可以参考下 ...
- ASP.NET教程
ASP.NET MVC4异步聊天室的示例代码
这篇文章主要介绍了ASP.NET MVC4异步聊天室的示例代码,具有一定的参考价值,感兴趣的小伙伴们可以参考一下 ...
- ASP.NET教程
在ASP.NET 2.0中操作数据之五十四:添加新记录时包含一个文件上
上篇文章主要介绍了,ASP.NET 2.0中如何显示二进制数据,本文主要介绍如何将图片上传,转换成二进制数据保存在数据库中。 ...
- ASP.NET教程
IIS处理Asp.net请求和Asp.net页面生命周期说明
当一个客户端页面访问IIS试图获取一些信息的时候,发生了什么事情?一个请求在通过了HTTP管道后又发生了什么?本文主要是描述这两个过程,即IIS处理...
- ASP.NET教程
ASP.NET餐饮管理系统制作代码分享
本文通过图片+代码的形式,详细的介绍了餐饮管理系统各部分功能及其实现方法。餐饮管理系统的制作必须有一条条理性的思维方可以做好,感兴趣的小伙...
- ASP.NET教程
asp.net Repeater 数据绑定代码
asp.net Repeater 数据绑定代码 ...