16

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>
4

4 に答える 4

24

親愛なるオルガは、メッセージが何を言っているかを明確にしています。カスタムエラーをオフにして、このエラーの詳細を確認して修正してから、元に戻します。したがって、mode="off"を次のように追加します。

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

相対的な回答: Webサイトの展開:500-内部サーバーエラー

ちなみに、エラーメッセージは、web.configがここに入力したものではないことを宣言しています。たぶんあなたはあなたのweb.configをアップロードするのを忘れましたか?また、オンラインページに使用するweb.configのデバッグフラグを閉じることを忘れないでください。

于 2012-05-28T11:18:29.630 に答える
1

これは、web.configファイルでカスタムエラーがオフになっている場合でも受信するメッセージである可能性があります。アプリケーションをホストするドライブの空き容量が不足している可能性があります。ドライブに他に空きがない場合は、ログファイルをクリーンアップします。

于 2016-08-04T12:52:48.360 に答える
1

私の場合、接続文字列に特別な文字(&)が含まれているため、このメッセージが表示されます。削除すると、すべて問題ありません。

乾杯

于 2018-02-28T10:39:44.873 に答える
0

説明:サーバーでアプリケーションエラーが発生しました。このアプリケーションの現在のカスタムエラー設定では、アプリケーションエラーの詳細をリモートで表示できません(セキュリティ上の理由から)。ただし、ローカルサーバーマシンで実行されているブラウザで表示することはできます。

詳細:この特定のエラーメッセージの詳細をリモートマシンで表示できるようにするには、現在のWebアプリケーションのルートディレクトリにある「web.config」構成ファイル内にタグを作成してください。このタグでは、「mode」属性を「Off」に設定する必要があります。

于 2014-02-22T17:31:34.913 に答える