You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Parmar, Deepak" <dp...@cgmpsystems.com> on 2002/02/22 21:51:09 UTC

newbie question: HTML Taglib

Hi,
I'm getting error like in my logon.jsp file:
Error in using tag library uri='/WEB-INF/struts-html.tld' prefix='html': The
Tag class 'org.apache.struts.taglib.html.FormTag' has no setter method
corresponding to TLD declared attribute 'title', (JSP 1.1 spec, 5.4.1)
probably occurred due to an error in /logon.jsp line 3:
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>

Here is my logon.jsp file

<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>

<html:html locale="true">
<head>
<html:base/>
</head>
<body bgcolor="white">

<html:errors/>
    <p> Test
</body>
</html:html>

Deepak