45 messaggi dal 08 luglio 2004
Salve,
ho pubblicato un form di prova a questo indirizzo: http://www.kassandra.it/insdb.aspx
ma al submit mi da un messaggio di errore che col server di webmatrix non ho.
Chi può aiutarmi grazie
77 messaggi dal 17 gennaio 2003
ora il webconfig è customErrors mode="RemoteOnly".....metti customErrors="Off"

Grande Nyquist!!!
77 messaggi dal 17 gennaio 2003
così vedi l'errore

Grande Nyquist!!!
45 messaggi dal 08 luglio 2004
L' ho modificato come mi hai detto,
ma qual'è l'errore?
51 messaggi dal 28 aprile 2003
Il messaggio che compare ti segnala che se vuoi conoscere l'errore, devi modificare il web.config della tua applicazione ed impostare il customErrors ad Off.
Con l'attributo RemoteOnly, l'errore è visibile solo sul web server dove gira.

Hai caricato il web.config sul web server?
Quanti web.config utilzza il tuo sito web?

<configuration>
    <system.web>

        <customErrors mode="Off"/>



    </system.web>
</configuration>


ciao
45 messaggi dal 08 luglio 2004
Allora questo è quello che è settato nel mio web.config,
ed è l'unico nel mio sito, e si trova nella cartella principale del mio sito.
Cosa c'è che non funziona?
Considera che con il server locale di webMatrix non mi da nessun errore, perchè?
Ciao




<?xml version="1.0" encoding="UTF-8" ?>

<configuration>

<!--

The <appSettings> section is used to configure application-specific configuration
settings. These can be fetched from within apps by calling the
"ConfigurationSettings.AppSettings(key)" method:

<appSettings>
<add key="connectionstring" value="server=localhost;trusted_connection=true;database=pubs"/>
</appSettings>

-->

<system.web>

<!--

The <sessionState" section is used to configure session state for the application.
It supports four modes: "Off", "InProc", "StateServer", and "SqlServer". The
later two modes enable session state to be stored off the web server machine -
allowing failure redundancy and web farm session state scenarios.

<sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;trusted_connection=true"
cookieless="false"
timeout="20" />

-->

<!--

The <customErrors> section enables configuration of what to do if/when an
unhandled error occurs during the execution of a request. Specifically, it
enables developers to configure html error pages to be displayed in place of
a error stack trace:

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

-->

<!--

The <authentication> section enables configuration of the security authentication
mode used by ASP.NET to identify an incoming user. It supports a "mode"
attribute with four valid values: "Windows", "Forms", "Passport" and "None":

The <forms> section is a sub-section of the <authentication> section,
and supports configuring the authentication values used when Forms
authentication is enabled above:

<authentication mode="Windows">

<forms name=".ASPXAUTH"
loginUrl="login.aspx"
protection="Validation"
timeout="999999" />

</authentication>

-->


<!--

The <authorization> section enables developers/administrators to configure
whether a user or role has access to a particular page or resource. This is
accomplished by adding "<allow>" and "<deny>" sub-tags beneath the <authorization>
section - specifically detailing the users/roles allowed or denied access.

Note: The "?" character indicates "anonymous" users (ie: non authenticated users).
The "*" character indicates "all" users.

<authorization>
<allow users="joeuser" />
<allow roles="Admins" />
<deny users="*" />
</authorization>

-->

</system.web>

</configuration>
51 messaggi dal 28 aprile 2003
<!-- -->
Questo racchiude un commento, quindi it tuo web.config non contiene nulla!!!

Ti consiglio di fare un web.config nuovo, con solo quello che ti è necessario. Molte impostazioni sono già definite nel machine.config.

ciao
45 messaggi dal 08 luglio 2004
Si adeso mi visualizza l'errore,
ma sinceramente non capisco a cosa possa essere dovuto.
Che stress!!!

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.