The only way is to 'reconstruct' a new request object using a querystring So the url would need to be constructed with ?foo=bar&foo2=bar2 etc, etc. The thing with sendRedirect() is that it sends an HTTP code to the browser, which then makes a brand new request, so there is no way for the browser to know about the previous 'request' unless you fake it out with the querystring. If you have objects, you'll have to use a session.
> -----Original Message----- > From: James Michelich [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 12, 2003 5:12 PM > To: [EMAIL PROTECTED] > Subject: RE: Forwarding control > > > Mike, > > Your suggestion worked out perfectly! Thanks for the help. > > One other quick question, if you don't mind - since sendRedirect() > doesn't send along the request object, is there another way to access > it from the target url while still using this method? > > Thanks, > > James > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
