9 messaggi dal 01 febbraio 2002
Ciao a tutti !!

Puntroppo non riesco a trovare 1 soluzione...

L'errore è :

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>


Il mio WEB.CONFIG è:

<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<connectionStrings>
<add name="ConnectionStringSql" connectionString="Data Source=xx.xxx.xxx.xx,xxx;Network Library=DBMSSOCN;Initial Catalog=pippo;User Id=user;Password=pass;" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<trace enabled="true" localOnly="false" requestLimit="20" />
<customErrors defaultRedirect="" />
<compilation debug="false"/>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<authentication mode="Forms" />
</system.web>
</configuration>

Ho già provato in locale e tutto funziona, anche connettendomi al Db Sql On-line.

Cosa posso fare?

Ciao
Alessandro

Grazie per l'aiuto.

Alessandro
Se hai creato la direcotry virtuale, probabilmente è sbagliata l'impostazione del framework (1.1 , 2.0) o il relativo connection pool.

Se queste impostazioni si tratta semplicemente di problema di diritti sulla cartella dell'applicazione

Ormai programmano tutti... ma la professionalità appartiene a pochi
9 messaggi dal 01 febbraio 2002
Ok,
GRAZIE !!!!!

Ora chiedo a chi mi ha venduto lo spazio web.

Grazie ancora!

Alessandro

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.