I have a page which now receives quite a few parameters, eg. page.jsp?abc=foo&xyz=bar ...
This page redirects via response.sendRedirect(). I want to know how I can forward every parameter onto the redirect page, without having to extract each one individually and rebuilding them in the url I place into sendRedirect(). Thanks