Loomis Mascha wrote:

> It depends on how you're sending the request.  If you might try the TARGET
> attribute in the anchor tag (i.e. <A HREF="my.html" TARGET="leftframe"></A>) or
> even in the form tag (i.e. <FORM ACTION="my.html" TARGET="leftframe"></FORM>
>
> This might also work from within the JSP (or servlet code):
>  response.setHeader("Window-target","_top");
>
> This works much like a meta tag in the header of an HTML file.  Replace "_top"
> with whatever named window you want to send the page to.  I got the idea from an
> HTML META tag primer (http://www.webdeveloper.com/html/html_metatags.html)  It
> seems to work nicely.
>

Before using the "Window-target" technique, you need to recognize that this is not a
standard HTTP header, and you are totally at the mercy of browser implementors on
whether they support it or not.  IMHO, using the "target" attribute of an <A> or
<FORM> element is better, because it is part of the HTML/4.0 spec.

>
> --mascha
>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to