Bonjour,

J'ai téléchargé sur le site distant le Dossier App_Data qui contient bien sûr le la base APNET.MDF dans laquelle j'ai paramétré des utilisateurs et attribué des rôles.

1/ Dans le login, " Se souvenir du mot de passe" s'affiche en: "Remember me next time", "Se connecter", s'affiche en " log in", alors que localement, tout s'affiche en français.

2/Lorsque je tape le nom de l'utilisateur et le mot de passe, puis lorsque je clique sur log in :
J'ai cette erreur sur le serveur distant en essai réel, et non en local sur mon pc!...où tout se passe bien.

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".

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<!-- 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.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
<!-- Web.Config Configuration File -->
 
<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
D'avance , je vous remercie pour votre précieuse aide.