16

我有 2 个登录页面:Login.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=&quot;Data Source=000.000.0.00;Initial Catalog=DBNAME;User ID=MYUSERNAME;Password=MYPASS;MultipleActiveResultSets=True&quot;" 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>
4

4 回答 4

24

亲爱的奥尔加很清楚消息的内容。关闭自定义错误以查看有关此错误的详细信息以进行修复,然后将其关闭。所以添加 mode="off" 为:

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

相对答案: 部署网站:500 - 内部服务器错误

顺便说一句:错误消息声明 web.config 不是您在此处键入的那个。也许您忘记上传您的 web.config ?并记住关闭用于在线页面的 web.config 上的调试标志。

于 2012-05-28T11:18:29.630 回答
1

就我而言,我收到此消息是因为我的连接字符串中有一个特殊的字符 (&),删除它然后一切都很好。

干杯

于 2018-02-28T10:39:44.873 回答
1

即使在 web.config 文件中关闭了自定义错误,这也可能是您收到的消息。这可能意味着您已用完承载应用程序的驱动器上的可用空间。如果您没有其他空间可以在驱动器上获得,请清理您的日志文件。

于 2016-08-04T12:52:48.360 回答
0

说明:服务器上发生应用程序错误。此应用程序的当前自定义错误设置可防止远程查看应用程序错误的详细信息(出于安全原因)。但是,它可以被本地服务器机器上运行的浏览器查看。

详细信息:要在远程计算机上查看此特定错误消息的详细信息,请在位于当前 Web 应用程序根目录的“web.config”配置文件中创建一个标签。然后,此标记应将其“模式”属性设置为“关闭”。

于 2014-02-22T17:31:34.913 回答