[Stripes-users] not clearing the fields after forward Resolution

2008-08-11 Thread Stripes-payal
hi, i have a page called test.jsp having submit button and text fields,& related action class. after subbmiting the page i forward it to the same page using forward Resolution. it goes to the same page but the values remains there,I want to clear off all the values after subbmiting . How it be ach

Re: [Stripes-users] not clearing the fields after forward Resolution

2008-08-11 Thread Levi Hoogenberg
You could try a redirect resolution? On Mon, Aug 11, 2008 at 9:42 PM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > hi, > i have a page called test.jsp having submit button and text fields,& > related > action class. > after subbmiting the page i forward it to the same page using forward > Resolut

Re: [Stripes-users] not clearing the fields after forward Resolution

2008-08-11 Thread David G Friedman
If you want to redisplay the same page without any form values, can you switch from a ForwardResolution to a RedirectResolution? Or is there something you need from the original form parameters you submitted? Regards, David Stripes-payal wrote: > hi, > i have a page called test.jsp having subm

Re: [Stripes-users] not clearing the fields after forward Resolution

2008-08-11 Thread Stripes-payal
thanks for y'r replies, one more thing How can i send parameters using Redirect reolution,like for the next time when page comes it has some text message with it. levi_h wrote: > > You could try a redirect resolution? > > On Mon, Aug 11, 2008 at 9:42 PM, Stripes-payal <[EMAIL PROTECTED]> > wrot

Re: [Stripes-users] not clearing the fields after forward Resolution

2008-08-11 Thread Levi Hoogenberg
Either using OnwardResolution#set/addParameter, or (it's more likely that you mean this) using the flash scope. See http://stripesframework.org/display/stripes/State+Management. On Mon, Aug 11, 2008 at 10:01 PM, Stripes-payal <[EMAIL PROTECTED]> wrote: > > thanks for y'r replies, > one more thing