欢迎来到代码驿站!

Windows

当前位置:首页 > 服务器 > Windows

“/”应用程序中的服务器错误和Server Error in ''/'' Application.的终极解决方法

时间:2021-10-03 17:02:21|栏目:Windows|点击:

“/”应用程序中的服务器错误。 运行时错误 说明: 服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止远程查看应用程序错误的详细信息(出于安全原因)。但可以通过在本地服务器计算机上运行的浏览器查看。 详细信息: 若要使他人能够在远程计算机上查看此特定错误信息的详细信息,请在位于当前 Web 应用程序根目录下的“web.config”配置文件中创建一个 <customErrors> 标记。然后应将此 <customErrors> 标记的“mode”属性设置为“Off”。

<!-- Web.Config 配置文件 --><configuration>    <system.web>        <customErrors mode="Off"/>    </system.web></configuration>


原因1: 这是由于配置中 Asp.Net 程序 没有显示详细的错误信息. 解决:  您必须按照要求,修改 web.config 文件 将 <customErrors mode="Off"/> 设置mode ="Off", 上传到网站根目录.然后刷新就可以看到详细错误.然后根据错误修改程序就可以了. 原因2: web.config 文件不是放在www根目录下.而是放在www的子目录下等.这样用户访问这个目录时就会出现提示错误. 解决:  将子目录下的 Asp.net应用程序移到 www根目录下. 这样就可以看到详细错误了.您可以根据错误调整程序.

3. Asp.Net 程序显示错误如下:
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".
原因1: web.config 文件不完整.不是合格的asp.net 配置文件. 解决:  您要检查web.config 是否合格,有时候是粗心,xml文件不完整.导致的问题 原因2: asp.net版本问题.asp.net有asp.net 1.1和 asp.net2.0 两个版本.

Server Error in Application.The resource cannot be found.Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Requested URL: /aspx/2/board.aspx
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42遇到这样的问题是不是没有部署bin文件,如果有的话,你把bin文件里面的那个DreamweaverCtrls.dll复制一下,然后把bin文件删除,再在之前的目录下面新建一个bin文件,把DreamweaverCtrls.dll粘贴进去。
如果还是不行那就是iis的问题。
你需要,开始-运行-cmd-输入cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727-回车-aspnet_regiis.exe 回车。他会提示asp.net正在安装。之后安装完成
然后你再去重新启动一下iis就可以了,启动方法为:右击我的电脑-管理-服务和应用程序-右击Internet信息服务-所有任务-重新启动iis,这样应该就行了

ASPX程序 Server Error in '/' Application 错误的最简单解决办法

给web目录加上 Users 权限即可:
右键网站文件夹,属性,安全,添加 Users ,确定,不用重启IIS。

上一篇:Windows 2008 服务器安全加固几个注意事项

栏    目:Windows

下一篇:Windows Server 2008R2文件服务器升级到Windows Server 2016

本文标题:“/”应用程序中的服务器错误和Server Error in ''/'' Application.的终极解决方法

本文地址:http://www.codeinn.net/misctech/178576.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有