我有2个登录页面:Login.aspx-用于客户登录,xlogin.aspx用于管理员登录 我刚刚将我的项目上传到服务器,所有应用程序页面都运行良好 但是当我登录管理员xlogin.aspx时,我正被转发到admin.aspx页面 - 但是我收到了这个错误:
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>
这是我的web.config
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<clear/>
<add name="PROJEntities" connectionString="metadata=res://*/PROJModel.csdl|res://*/PROJModel.ssdl|res://*/PROJModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=000.000.0.00;Initial Catalog=DBNAME;User ID=MYUSERNAME;Password=MYPASS;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" timeout="720" slidingExpiration="true" defaultUrl="~/Gateway.ashx"/>
</authentication>
<customErrors mode="Off"/>
<pages enableEventValidation="false" viewStateEncryptionMode="Never"></pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization>
<converters>
<add type="PROJ.Presentation.Common.DateTimeConverter" name="DateTimeJavaScriptConverter"/>
</converters>
</jsonSerialization>
</webServices>
</scripting>
</system.web.extensions>
</configuration>
答案 0 :(得分:16)
亲爱的奥尔加清楚地说明了这个消息。关闭自定义错误以查看有关此错误的详细信息以进行修复,然后将其关闭。所以将mode =“off”添加为:
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
相对答案: Deploying website: 500 - Internal server error
顺便说一下:错误消息声明web.config不是您在此处键入的那个。也许你忘了上传你的web.config?请记住关闭用于在线页面的web.config上的调试标志。
答案 1 :(得分:1)
即使在web.config文件中关闭了自定义错误,这也可能是您收到的消息。这可能意味着您承载应用程序的驱动器上的可用空间不足。如果驱动器上没有其他空间,请清理日志文件。
答案 2 :(得分:1)
在我的情况下,我收到了这条消息,因为我的连接字符串中有一个特殊字符(&amp;),删除它然后一切都很好。
干杯
答案 3 :(得分:0)
描述:服务器上发生了应用程序错误。此应用程序的当前自定义错误设置可防止远程查看应用程序错误的详细信息(出于安全原因)。但是,它可以在本地服务器计算机上运行的浏览器中查看。
详细信息:要在远程计算机上查看此特定错误消息的详细信息,请在位于当前Web应用程序根目录中的“web.config”配置文件中创建标记。然后,此标记应将其“mode”属性设置为“Off”。