Ho uno spazio web su Aruba e stavo iniziando a provare qualcosa in asp.net con c# in locale. Fin qui tutto ok.
Ho provato a copiare il progetto in una cartella sul server e quando carico la pagina mi si presenta il seguente 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>
A cosa può essere dovuto? Cosa non va sul web.config?
Non l'ho assolutamente toccato dopo aver creato il progetto in vs.net
Sapreste aiutarmi?
La pagina che mi genera l'errore è una semplice pagina di questo tipo (poi vale per tutte le altre pagine più complesse).
<%@ Page language="c#" Codebehind="default.aspx.cs" AutoEventWireup="false" Inherits="WebAgente.Agente" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>Agente</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content="' target=_blank>http://schemas.microsoft.com/intellisense/ie5">;
<link href="style.css" rel="stylesheet">
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<h2 align="center">Agente</h2>
<br>
<table id="tab-bordo" align="center">
<tr>
<td>
<a href="InsTab2.aspx">Inserisci e visualizza Tabella1</a>
</td>
</tr>
<tr>
<td>
<a href="InsTab2.aspx">Inserisci e visualizza Tabella2</a>
</td>
</tr>
<tr>
<td>
<a href="InsTab3.aspx">Inserisci e visualizza Tabella3</a>
</td>
</tr>
</table>
</form>
</body>
</HTML>
sapreste aiutarmi?
Ho provato ad inserire <customErrors mode="Off" /> nel web.config ma è come se non lo prendesse in considerazione.
Avete qualche idea?
Grazie.
Modificato da Zippo il 05 novembre 2004 21.32 -