String querystring=((WebRequest)getRequest()).getHttpServletRequest().getQueryString();
PageParameters p=new PageParameters(querystring,"&");

try that

-igor


On 10/27/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote:
Hi,
 
ive got a small problem, in wich im not sure how to solve it:
 
Ive got a own IRequestStrategy that uses requestParameters and have a form-panel in the masterlayout that uses this submit:
 
@Override
        public void onSubmit()
        {
            String suchFeld = getSuchfeld();
            if(suchFeld.length()>0)
            {
                PageParameters params = new PageParameters();
                params.add("finde",suchFeld);
                setResponsePage(Suche.class,params);
            }
            else
            {               
               
                setResponsePage(getPage().getClass(), new PageParameters(getPage().getRequest().getRequestParameters().getParameters()));
            }
 
i now try in case nothing is specified to return the same page as before with same URL, however, how can i get all the RequestParameters from the page itself ? new PageParameters(getPage().getRequest().getRequestParameters().getParameters()) doenst work and 
 getPage().getRequest().getRequestParameters() is also not helpful - what i need would be a getPage().getRequest().getPageRequestParameters();
 
how can i solve this ?
 
Best Regards,
 
Korbinian

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to