Struts Please very very very very very urgent
Hi every body when i am running a struts file i am getting this error
org.apache.jasper.JasperException: /strutsEx/index.jsp(4,0) Attribute name invalid according to the specified TLD..i have placed the tld file struts-html.tld
My code is :
<%@ page language = "java"%>
<%@ taglib uri="myTagStruts-Html" prefix="html" %>
<html>
<body>
<html:form action = "lookup" name = "lookupForm" type = "ch03.lookupForm">
<table>
<tbody>
<tr>
<td>Name:</td>
<td><html:text property = "symbol" /></td>
</tr>
<tr>
<td colspan = "2" align = "center"><html:submit /></td>
</tr>
</tbody>
</table>
</html:form>
</body>
</html>
|