Would need to see some of your code...

The only idea I got without seeing your code:
check your struts-config.xml
<form-bean name="yourFormMappingName" type="YourFormClass"/>

<action path="/doAction" type="YourActionClassName"
name="yourFormMappingName" scope="session" validate="true"
input="/yourJSP.jsp">
<forward name="yourLocalForwardName" path="/yourSecondJSP.jsp" />
</action>

Or even better:
Download James Holmes "Struts Console" to edit your struts-config.
(search google)

hope this helps,

marcus



[EMAIL PROTECTED] schrieb:
> 
> Can anyone explain me why I get this problem...
> I have my action and form defined in the struts-config.xml..
> Now in my jsp page when I enter a value in the text-box and try to see the
> value in my action using debugger, I don't see that value in my form and all
> i see is the reset value defined in the form bean.
> Somehow anyvalues I enter in my jsp pages aren't getting moved to the form
> and they my form just has the reset values defined initally.
> Can someone explain this to me..
> 
> Naga
> 860-686-1643

--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Reply via email to