« Return to Thread: Compare JSP Vs Wicket

Re: Compare JSP Vs Wicket

by newbie_to_wicket :: Rate this Message:

Reply (Restricted by the Administrator) | Reply to Author | View in Thread


i am also using the same in our aplication....
use this following....

setting the parameter.....
url = "/urlpattern?abc=true";

getting the parameter...
Request req = RequestCycle.get().getRequest();

HttpServletRequest httpreq = ((wicket.protocol.http.servlet.ServletWebRequest) req)
                                                                .getHttpServletRequest();




String skipCreatingUserInAuthStrat = req.getParameter("abc");

 « Return to Thread: Compare JSP Vs Wicket