Bonsoir,
J'ai créé un formulaire avec le tag html :
-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.
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 <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 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
Partager