formulaire struts et ImagePanel
Bonsoir,
J'ai créé un formulaire avec le tag html :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<html:form action="main.do">
<table>
<tr>
<td>Identifiant</td>
<td><html:text property="identifiant" size="20"/></td>
</tr>
<tr>
<td>Mot de passe</td>
<td><html:text property="passe" size="20"/></td>
</tr>
<tr>
</table>
<table>
<tr>
<td><html:submit value="Se connecter"/></td>
<td><html:reset value="Annuler"/></td>
</tr>
</table>
</html:form> |
-Je veux travailler avec struts-layout , mais je ne sais pas comment ça se traduit tout en indiquant les champs property du bean comme dans struts-html.
-Je veux créer mon formulaire dans un panel , je ne sais pas quoi utilser:
ImagePanel ou form
Et pour ImagePanel j'ai pas compris comment ça s'utilise
Merci pour vos aides