Hi
I'm working with struts and tiles and I have a problem with my forms that
they are not being repopulated. I have a simple login form like this:
<html:form action="/login">
<table>
<tr>
<td class="textoBold">
User
</td>
<td>
<html:text property="user" size="30" maxlength="40"/>
</td>
</tr>
<tr>
<td class="textoBold">
Password
</td>
<td>
<html:password property="password" size="30" maxlength="40"/>
</td>
</tr>
<tr>
<td colspan="2">
<html:submit value="Login"/>
</td>
</tr>
</table>
</html:form>
My struts-config looks like this:
<action path="/login" type="com.tcs.reclamos.struts.action.LoginAction"
name="loginForm" scope="request">
<forward name="success" path="principalForward.do" redirect="true"/>
<forward name="failure" path="Login"/>
</action>
Every time a failure occurs because a validation problem the form is not
repopulated. What else should I check?
Thanks in advance
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]