Hi Scott,
Is this just a fact that your request is a POST and you are expecting
the form data? Note that getQueryString() returns the parameters
listed after the '?' in the URL but not the form fields in a POST.
Carlin
On 12/11/06, Scott Symmank <[EMAIL PROTECTED]> wrote:
when i encounter an exception in an action method, i want go back to the
current page. this seems to be working, but i loose my query parameters.
does anyone have any suggestions?
thanks,
scott
Controller level forward:
@Jpf.Forward(name = "currentPage", navigateTo =
Jpf.NavigateTo.currentPage)
Forward currentPage = new Forward("currentPage");
currentPage.addOutputForm(form);
//TODO: add query parameters getRequest().getQueryString() is
returning null.