Bonjour,

Voila un JSP:

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
27
28
29
30
31
32
33
34
35
36
 
%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
 
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
 
<html>
<head></head>
<body>
<center>
<h2>Personne - Formulaire</h2><hr>
 
<html:form action="/main" >
 
<table>
    <tr>
         <td>Nom</td>
         <td><html:text property="nom" size="20" /></td>
    </tr>
	<tr>
    	 <td>Age</td>
     	<td><html:text property="age" size="3"/></td>
	</tr>
</table>
 
<table>
     <tr>
       <td><html:submit value="Envoyer" /></td>
       <td><html:reset value="Retablir" /></td>
	   <td><html:button property="btnEffacer" value="Effacer" onclick="effacer()"/></td>
     </tr>
</table>
</html:form>
</center>
</body>
</html>
Le serveur Tomcat affiche une erreur ligne 12 de mon JSP (code précedent). --> la ligne est:

<html:form action="/main" >

Quelle est l'erreur ? Merci de toute aide.