13 messaggi dal 06 dicembre 2006
Ciao a tutti,
ho un sito web scritto in html + asp è pubblicato su un dominio acquistato da Aruba.

All'interno di un forum sul web c'è un vecchio link che rimanda al mio sito web il quale contiene un "." alla fine:

http://www.miosito.it/cartella/nomefile.pdf.

Se non ci fosse l'ultimo punto il web.config intercetterebbe l'errore e manderebbe l'utente alla pagina "errore.asp"; in questo caso invece compare il seguente errore:

---------------------
Server Error in '/' Application.
Runtime Error
Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
---------------------

Come posso intercettare e risolvere questo errore?

Questo è il contenuto del mio web.config:

<configuration>
<system.web>
   <customErrors mode="On" defaultRedirect="/index.asp">
     <error statusCode="404" redirect="/errore.asp" />
        <error statusCode="403" redirect="/errore.asp" />
        <error statusCode="500" redirect="/erroremanutenzione.asp" />
   </customErrors>
   <compilation debug="true" />
</system.web>

<system.webServer>
  <httpErrors errorMode="Custom">
     <remove statusCode="404" subStatusCode="-1" />
     <error statusCode="404" prefixLanguageFilePath="" path="/errore.asp" responseMode="ExecuteURL" />
           <remove statusCode="403" subStatusCode="-1" />
           <error statusCode="403" prefixLanguageFilePath="" path="/errore.asp" responseMode="ExecuteURL" />
           <remove statusCode="500" subStatusCode="-1" />
           <error statusCode="500" prefixLanguageFilePath="" path="/erroremanutenzione.asp" responseMode="ExecuteURL" />
  </httpErrors>
        <staticContent>
            <mimeMap fileExtension=".dwg" mimeType="drawing/dwg" />
        </staticContent>
</system.webServer>

</configuration>
11.886 messaggi dal 09 febbraio 2002
Contributi
Ciao,


Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception

A giudicare dal testo, si sta verificando un errore nella tua pagina errore.asp. Per caso hai del codice che va ad esaminare l'estensione del file richiesto? Se sì, è un problema per il tuo codice se questa estensione fosse vuota, come nel caso del pdf?

ciao,
Moreno

Enjoy learning and just keep making

Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.