Bonjour,

Voilà j'ai une page internet développée en ASPX/C# qui jusqu'à présent marchait très bien.

Aujourd'hui j'ai décidé d'y ajouter la possibilité de tracer une courbe. J'ai utilisé pour cela la libraire ZedGraph. En local, tout se passe bien. La courbe se trace avec les paramètres qu'on lui donne, aucun problème. Cependant, quand j'ai uploadé ma page sur le serveur, celle-ci refuse de s'afficher et j'ai à la place l'erreur suivante :

Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load file or assembly 'ZedGraph.Web' or one of its dependencies. The system cannot find the file specified.

Source Error:

Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
Line 2: <%@ Register TagPrefix="zgw" Namespace="ZedGraph.Web" Assembly="ZedGraph.Web" %>
Line 3:
Line 4: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


Source File: /b/l/a/blackiprog/Default.aspx Line: 2

Assembly Load Trace: The following information can be helpful to determine why the assembly 'ZedGraph.Web' could not be loaded.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
Pour préciser un peu la chose : j'ai du ajouter un dossier "bin" avec deux fichiers .dll dedans contenant la librairie ZedGraph. Je n'ai pas touché à mon fichier web.config.

Après une après midi à chercher sur google une solution, je n'ai toujours rien trouvé. Voyez-vous comment régler le problème? Dois-je modifier mon web.config ?

Merci d'avance !

Diz.