Domanda

A cosa serve questa pagina? Ho una voce nel file di configurazione ... questo causa danni?

  <customErrors mode="off" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>

È l'errore sotto riportato da GenericErrorPage.htm

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>
È stato utile?

Soluzione

I file 'GenericErrorPage.htm', 'NoAccess.htm' e 'FileNotFound.htm' sono nomi di file predefiniti, creati da Visual Studio durante la creazione di un'applicazione Web. È possibile utilizzare qualsiasi file HTML o pagina aspx e utilizzare quel nome in web.config. Questi nomi sono solo valori fittizi.

Altri suggerimenti

Fondamentalmente se un utente riceve un errore diverso da 403 o 404 (in particolare diverso da quelli è 500 che viene inviato se c'è un'eccezione) verranno reindirizzati a quella pagina, che non esisterà (E se tu ' nella pipeline integrata IIS7 o se sono mappati i caratteri jolly IIS6, verranno rimbalzati su FileNotFound.htm, altrimenti vedranno solo uno standard 404).

Probabilmente sarebbe bello dare almeno all'utente un " Oh no! Qualcosa non va! & Quot; pagina.

Se si verifica un errore e il codice di stato è diverso da 403 o 404, verrà reindirizzato a GenericErrorPage.htm

Inoltre hai un errore nella tua dichiarazione. L'attributo mode dovrebbe essere Off anziché off :

<customErrors mode="Off" defaultRedirect="GenericErrorPage.htm">
    <error statusCode="403" redirect="NoAccess.htm" />
    <error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top