Bonjour,
Je suis novice en application WEB et ASP et j'aimerais avoir de l'aide. Je suis étudiant, et en créant mon propre site, cela me permet d'apprendre.

Voici un résume de mes démarches:
--------------------------------------------------

1-J'ai créer une simple page Default.ASPX avec Visual studio 2008 avec le message "Bonjour le monde". Mon langage est C# et génère un fichier Default.ASPX.cs. De plus j'ai un fichier Web.Config qui se génère automatiquement quand je fait un BUILD...

2-J'ai fait un BUILD SOLUTION (F6)
3-J'ai fait un BUILD WEB SITE (Shift-F6)
4-J'ai fait un PUBLISH WEB SITE (qui génère un objet dans un dossier BIN pour mon Default.ASPX.cs)

5-Je suis allé sur le site Brinkster (un site gratuit pour permettre d'héberger des pages ASP), j'ai utilisé le FILE MANAGER pour faire un upload de mes fichiers provenant du dossier généré par le PUBLISH WEB SITE (de visual studio 2008), soit mettre la page Default.ASPX, celle de Web.Config, créer un dossier BIN puis mettre le contenue de mon BIN (provenant de l'action fait par PUBLISH WEB SITE dans celui du site Brinkster.

En allant sur mon site http://qualize.brinkster.net/ j'ai le message suivant:
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>
Quelle serait la solution svp ?

Merci