172 messaggi dal 05 dicembre 2001
Scusate ma che cavolo vuol dire quest'errore?
Ho provato tutti i settaggi possibile di questo file...chi mi aiuta??
--------
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>
-------------
Grazie!
252 messaggi dal 18 dicembre 2001
Semplicemente, non ti trovi in modalità Debug quindi il runtime ti informa che c'è un errore, ma che non puo' mostrarlo.
Metti il debug e dovrebbe darti un qualcosa di piu' specifico al fine di capire di cosa si tratta..
Un altro motivo è che l'errore ti viene dato nella macchina server, ma tu hai provato ad avere accesso da un'altra macchina, in questo caso l'errore non ti viene mostrato. Prova ad accedere dalla macchina dove c'è il sito e vedi se ti ritorna qualcosa di piu' specifico.
Almeno credo che si tratti di questo.. Facci sapere.
Ciao.
Rei.

Rei.

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.