Voilà le fichier qui doit traiter les champs du formulaire, je ne sais po si ca peux t'aider...
G une class Forum.class dans laquelle j'ai les methodes pour récupérer les champs nom,password ...
<!-- Crée l'instance du bean avec un id de "forum" -->
<jsp:useBean id="forum" scope="request" class="Forum" />
<!-- Met les valeurs du bean aux valeurs de la requête -->
<jsp:setProperty name="forum" property="*" />
<html>
<head>
<title> Forum Daito </title>
</head>
<body>
<table width="75%" border="0" align="center">
<tr bgcolor="#003366">
<td width="21%"><b><font color="#A4ADC6">Auteur</font></b></td>
<td width="79%"><font color="#A4ADC6"><b>Sujet : <%= Forum.getSujet() %></b></font></td>
</tr>
</table>
<table>
<tr bgcolor="#003366">
<td width="21%"><b><font color="#A4ADC6"><%= Forum.getNom()%></font></b></td>
<td width="79%"><font color="#A4ADC6"><%= Forum.getMessage()%></font></td>
</tr>
</table>
</body>
</html>
---------------
Q.G Tutoriaux ici