-----Urspr��ngliche Nachricht----- Von: Cliff Rowley [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 22. Juli 2002 12:51 An: Struts Users Mailing List Betreff: Re: How sturts open a new window page ? sanjeev_dutt wrote: >Hi Robert, > >Could you please explain how to use this 'target' attribute with an example. > Any HTML documentation on the A or FORM tags will tell you what you need to know. In summary, the target attribute specifies either the name of a frame, or one of a few predefined values. Some of those predefined values being _top (the top level frame or window if no frames exist) and _blank (a new window). For example: <a href="foo.html" target="_blank"> will open foo.html in a new window. <form action="foo.do" method="POST" target="_blank"> will submit the form to foo.do in a new window. Really these questions are not Struts, but HTML specific (since the Struts tags generally generate underlying HTML). HTH Cliff Rowley -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

