Bonjour je souhaite transformer une liste déroulante écrite à la main dans mon formulaire en automatique avec les html options
dans ma base j'ai une table société et je veux alieu d'écrire les sociétés à la main l'avoir directement
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 <html:form action="/AddContact" name="contactForm" type="com.employescrm.struts.form.ContactForm" > <table width="500" border="0"> <tr> <html:select property="soc_id" size="1"> <html:option value="38901"> <bean:message key="app.lsds" /> </html:option> <html:option value="74819"> <bean:message key="app.psb" /> </html:option> <html:option value="38902"> <bean:message key="app.robertsa" /> </html:option> <html:option value="38903"> <bean:message key="app.dupontsa" /> </html:option> </html:select> </td>
Partager