Hi,

redirection is mainly used for redirecting the actual page to another one (I
mean is a kind of control passing).
What you want to do is commonly written in HTML as a link, which once
clicked on it opens the "page.jsp"in a new browser window:

<A HREF="page.jsp" TARGET="_top">Go to my page</A>

It also can be made using JavaScript, with the window.open function (this
gives you more control on the new child window, because size and other
attributes can be set).

Cheers.
-- 
Víctor A. Rodríguez ( http://www.bit-man.com.ar) 
Telefónica de Argentina - http://www.Telefonica.com.ar 
Tel. (54-11) 4333-7305 - Fax: (54-11) 4303-5586 int. 1680 



-----Mensaje original-----
De: Carlos [mailto:[EMAIL PROTECTED]]
Enviado el: Monday, January 29, 2001 13:29
Para: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Asunto: response.sendRedirect and target


if i have:
response.sendRedirect("page.jsp");
how can i put in a target=_top the redirect?
thanks
Carlos


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to