> From: Jonathan Mast [mailto:[EMAIL PROTECTED] > 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().
I've tended to use a swift bit of string manipulation - look for the ? in the original URL, and append everything to the right of that. Ugly, but it works. - Peter --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]