[nobr]<HTML>
<HEAD><TITLE>Simple Page</TITLE></HEAD>
<BODY BGCOLOR="#FDF5E6">
<P>
<CENTER>
<%@ taglib uri="http://struts.apache.org/tags-html"
prefix="html" %>
<html:errors/>
<html:form action="/actions/register"
onsubmit="return validateRegisterFormBean(this);">
First name: <html:text property="firstName"/><BR>
Last name: <html:text property="lastName"/><BR>
Mailing address: <html:text property="address"/><BR>
ZIP Code: <html:text property="zipCode"/><BR>
Email address for confirmation:
<html:text property="email"/><BR>
<html:submit value="Register Now!"/>
</html:form>
<html:javascript formName="registerFormBean"/>
</CENTER>
</BODY></HTML>
This is the code.
I am getting error messages in the form itself rather than in a message box.[/nobr]