s<body>
s<h3>Example Submit
Page</h3>
s<html:errors/>
s<html:form
action="submit.do"> Last Name: <html:text property="lastName"/>
s<br> Address:
<html:textarea property="address"/>
s<br> Sex:
<html:radio property="sex" value="M"/>Male
<html:radio property="sex" value="F"/>Female
s<br> Married:
<html:checkbox property="married"/>
s<br> Age:
<html:select property="age"> <html:option
value="a">0-19</html:option> <html:option
value="b">20-49</html:option> <html:option
value="c">50-</html:option> </html:select>
s<br>
<html:submit/> </html:form> </body> </html>
s