[C#] problèmes de combobox et d'imagebouton
bonjour,
j'ai 2 problèmes :
1) mes combobox ajax n'appellent pas les fonctions behind lors d'écriture dans celles-ci
2) impossible de cliquer sur le bouton "ajout"
Pouvez-vous m'aider.
Merci
Voici une partie du code en question :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<table border="0" width="100%" cellpadding="20">
<tr>
<td colspan="3" align="center">
<h4>Ajouter un administrateur</h4>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lb_Badge_ajout" runat="server" Text="Numéro de badge : " ForeColor="#190db4"/>
<act:ComboBox ID="Badge_ajout" runat="server" MaxLength="7" AutoCompleteMode="SuggestAppend" DropDownStyle="DropDown" OnSelectedIndexChanged="Badge_ajout_SelectionChangeCommitted" OnTextChanged="Badge_ajout_TextChanged" />
</td>
<td>
<asp:Label ID="lb_Nom_ajout" runat="server" Text="Nom : " ForeColor="#190db4"/>
<act:ComboBox ID="Nom_ajout" runat="server" AutoCompleteMode="SuggestAppend" DropDownStyle="DropDown" OnSelectedIndexChanged="Nom_ajout_SelectionChangeCommitted" OnTextChanged="Nom_ajout_TextChanged" />
</td>
<td>
<asp:Label ID="lb_Prenom_ajout" runat="server" Text="Prénom : " ForeColor="#190db4"/>
<asp:DropDownList ID="Prenom_ajout" runat="server" OnSelectedIndexChanged="Prenom_ajout_SelectionChangeCommitted"/>
</td>
</tr>
</table>
<asp:ImageButton ID="Ajout" runat="server" ImageAlign="right" ImageUrl="Images\Icone ajouter.JPG" OnClick="Ajout_Click" ToolTip="Ajouter" CausesValidation="false" /> |