我的java列表
<html:select property="immeuble.zone" size="1" styleId="zone" styleClass="saisie">
<html:optionsCollection property="optionsZone" label="libelle" value="code"/>
</html:select>
我的lsit在我的jsp中
List optionsZone = new ArrayList(3);
optionsZone.add(new CodeLibelleBean("1","1"));
optionsZone.add(new CodeLibelleBean("2","2"));
optionsZone.add(new CodeLibelleBean("3","3"));
HashMap Tarif = new HashMap();
Tarif.put("1","100");
Tarif.put("1","150");
Tarif.put("1","180");
Tarif.put("2","200");
Tarif.put("2","250");
Tarif.put("2","290");
Tarif.put("3","300");
Tarif.put("3","350");
Tarif.put("3","360");