J'ai une erreur à la construction mais qui vient du code générer automatuiquement.
et oui quand on à la poisse... !
en fait j'en ai deux les voici :
C:\stephane\essaiClient\index.aspx.cs(90): 'essaiClient.WebForm2' does not contain a definition for 'TextNumConsult_TextChanged'
The dependency 'ICSharpCode.SharpZipLib' could not be found.
Dans le code sa se refere à ça : (en tout cas pour la premiere car la deuxième ça ne m'envoie nullepart et j'y comprend rien !
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9 private void InitializeComponent() { this.ButtonAjouter.Click += new System.EventHandler(this.ButtonAjouter_Click); this.TextNumConsult.TextChanged += new System.EventHandler(this.TextNumConsult_TextChanged); this.ButtonConsulter.Click += new System.EventHandler(this.Button1_Click); this.DGClients.SelectedIndexChanged += new System.EventHandler(this.DataGrid1_SelectedIndexChanged); this.Load += new System.EventHandler(this.Page_Load); }
Partager