Re: redirection - please help

2003-10-25 Thread Max Cooper
brar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, October 25, 2003 6:39 AM Subject: redirection - please help > hi! > is it possible for me to redirect users to an external site from inside an > action class. > ie, say a user clicks /foo, this calls Foo

Re: redirection - please help

2003-10-25 Thread Ruth, Brice
You'll want to issue a "Location: \n\n" header to the response stream, that should do the trick. ajay brar wrote: hi! is it possible for me to redirect users to an external site from inside an action class. ie, say a user clicks /foo, this calls FooAction which does some intial processing. I n

redirection - please help

2003-10-25 Thread ajay brar
hi! is it possible for me to redirect users to an external site from inside an action class. ie, say a user clicks /foo, this calls FooAction which does some intial processing. I now want to redirect the user to some other site. how can i do that? do i write the link out into the response stream