4 messaggi dal 13 dicembre 2007
Salve vorrei sapere come mai un sito realizzato in asp.net in locale funzione ma in remoto mi da errore nel web.config che precedentemente avevo testato ed andava bene?
Grazie.
652 messaggi dal 21 gennaio 2007
Contributi
può dipendere da un sacco di cose..
però bisogna che ci dici che tipo di errore hai, se no è difficile che riusciamo ad aiutarti
4 messaggi dal 13 dicembre 2007
Giustamente!!!!Scusate!!!!



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>

--------------------------------------------------------------------------

Questo è quello che viene stampato a video non l'avevo mai visto prima....anche perchè avevo provato l'upload e funzionava....ma oggi niente!!!!
652 messaggi dal 21 gennaio 2007
Contributi
questo non è un errore del web.config, ma un errore della tua applicazione..
l'errore ti suggerisce di abilitare la visualizzazione degli errori all'interno del web.config così da poter identificare l'errore che genera la tua applicazione.
per abilitare la visualizzazione degli errori, modifica il web.config come ti viene chiesto.
quindi:

<customErrors mode="Off"/> 


e vedrai che avrai così a che fare con un nuovo errore, lanciato però dalla tua applicazione
4 messaggi dal 13 dicembre 2007
Parser Error Message: Could not load file or assembly 'ADODB' or one of its dependencies. The system cannot find the file specified.

Source Error:


Line 1: <%@ Page Language="VB" debug="true" %>
Line 2: <%@ Assembly Name="ADODB" %> ---questa è la RIGA CON L'ERRORE
Line 3: <%@ Import Namespace="ADODB" %>
Line 4: <%@ Import Namespace="System.Data" %>
Modificato da gidecio il 16 gennaio 2009 16.45 -

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.