0

Web サイトを展開しているときに、次のエラーが発生します。

Server Error in '/domain/website' 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>

customErrors mode="Off" を変更してみましたが、喜びはありません..同じエラーが繰り返されます...

また、GenericErrorPage.htm がありません。これがエラーの原因ですか?

助けの手はあり​​ますか?

4

2 に答える 2

1

これは、web.config に構文エラーがあるためである可能性があります。現在の web.config をこれのみを含むものに置き換えてみて、何が起こるかを確認してください。

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
于 2009-11-27T10:12:44.740 に答える
0

Web サイトでデュアル web.config を使用していますか。例えば。

/domain で 1 つの web.config を使用し、/domain/website で別の web.config を使用している場合。/website をアプリケーションとして変換する必要があります。

ただし、サーバーにログインしてページを参照することをお勧めします。実際の問題を確認できます。修正方法がわからない場合。一度投稿してください。私たちはあなたを助けることができるかもしれません.

于 2014-11-29T14:42:42.707 に答える