When I compile my jsp and java files, I get 9 warnings from the jsp file.
It appears not to recognize the html tags ie unknown tag (html:cancel).
What have I done wrong?  Here is the login.jsp file.

<%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>

<html:html locale="true">

<head>
<title><bean:message key="welcome.title"/></title>

<html:base/>

</head>

<body bgcolor="white">

<html:form action="/login">

<html:errors/>

<table>

      <tr>

            <td align="center" colspan="2">
                  <font size="4">Please Enter your Login</font>
            </td>
      </tr>

      <tr>
            <td align="right">
            Name
            </td>
      </tr>
<tr>
            <td align="left">
                  <html:text property="name" size="4" maxlength="4"/>
            </td>
      </tr>
      <tr>
            <td align="right">
            Password
            </td>
            <td align="left">
                  <html:password property="password" size="8" maxlength="8"
/>
            </td>
      </tr>
      <tr>
            <td align="right">
                  <html:submit>Submit</html:submit>
            </td>
            <td align="left">
                  <html:cancel>Cancel</html:cancel>
            </td>
      </tr>
</table>
</html:form>
</body>
</html:html>


Carrie Latimer
Florida's Turnpike Enterprise
Tolls Data Center
Main 561.488.5361
SC 247.5361
Fax 561.470.6615
Mobile: 561.239.6189
Nextel: 158*763*109
[EMAIL PROTECTED]




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to