【问题标题】:error: the details of the application error from being viewed remotelyerror:远程查看应用程序错误的详细信息
【发布时间】:2012-06-02 18:17:08
【问题描述】:

我有 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=&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>

【问题讨论】:

  • 你需要查看错误。该页面出现问题。打开自定义错误并查看错误消息。

标签: asp.net sql web-config connection-string


【解决方案1】:

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

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

相对答案: Deploying website: 500 - Internal server error

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

【讨论】:

    【解决方案2】:

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

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

    【讨论】:

      【解决方案3】:

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

      【讨论】:

        【解决方案4】:

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

        干杯

        【讨论】:

          猜你喜欢
          • 1970-01-01
          • 2015-12-14
          • 2014-10-08
          • 2015-09-24
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          • 1970-01-01
          相关资源
          最近更新 更多