I got this Struts quickstart demo to work and it produced the following jsp
<html:form action=”/userLogin”>
password : <html:password property=”password”/><html:errors property=”password”/><br/>
userName : <html:text property=”userName”/><html:errors property=”userName”/><br/>
<html:submit/><html:cancel/>
</html:form>
what is <html:form and <html:password ?? I mean, instead of the expected
<FORM ACTION we have generated <html:form action
when I look at other struts tutorials, I see the form specified as
<FORM ACTION=”../actions/register1.do” [/quote][/code]