probleme de passer une variable dans un lien
jai une liste deroulante pour les noms des clients
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| <html:form action="valider.do">
..
<html:select name="clientForm" property="id_client">
<html:options collection="listclient" property="id_client" labelProperty="nom_client"/>
</html:select>
.
.
<td>
<a href="ajouter.do?id_client=${clientForm.id_projet}"/>ajouter</a></td>
.
.
</html:form> |
je veux envoyer l id_client choisi dans la liste deroulante en href mais ca passe pas je trouve la valeur est null,comment faire ?