Managing paramenters while redirecting through repsonse.sendRedirect()
hi,
I want to redirect to a page and also want to set some parameters which will be sent to the redirecting page. If i use a form then parameters can be set using forms and hidden fields. But when i redirect to some page using response.sendRedirect(Location) i couldnt find any message such as response.setParameter(name,value). How to set parameters while redirecting a page.

