Re: Compare JSP Vs Wicket
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");