How does one specify that the Hyperlink is to open in a new window??

Re: Open a Hyperlink in a New Window by Trevor

Trevor
Sun Feb 25 22:56:52 CST 2007

LouieLouie wrote:
> How does one specify that the Hyperlink is to open in a new window??

In FP2003, open the page in Design View.
Right click the link
Select Hyperlink Properties
Click on Target Frame
Select New Window

Or in Code view ,
<a href="page2.html" target="_blank" title="Page 2">
Page 2 </a>


--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------

Re: Open a Hyperlink in a New Window by HenryHicks

HenryHicks
Wed Feb 28 22:02:05 CST 2007

Of course

<a href="page2.html" target="_blank">Page 2</a>

works just as well, don't really need the "title" string as the page will
most likely have that in the code.

Henry

"Trevor L." wrote:

> LouieLouie wrote:
> > How does one specify that the Hyperlink is to open in a new window??
>
> In FP2003, open the page in Design View.
> Right click the link
> Select Hyperlink Properties
> Click on Target Frame
> Select New Window
>
> Or in Code view ,
> <a href="page2.html" target="_blank" title="Page 2">
> Page 2 </a>
>
>
> --
> Cheers,
> Trevor L.
> [ Microsoft MVP - FrontPage ]
> MVPS Website: http://trevorl.mvps.org/
> ----------------------------------------
>

Re: Open a Hyperlink in a New Window by Stefan

Stefan
Thu Mar 01 03:49:11 CST 2007

FYI
The title in the a tag has nothing to do w/ the linked page title
- it is the attribute in a link that displays a screen tip when moused over

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


"Henry Hicks" <HenryHicks@discussions.microsoft.com> wrote in message news:5A241EBB-482A-4ECF-AFFC-1DE1140B1F2F@microsoft.com...
| Of course
|
| <a href="page2.html" target="_blank">Page 2</a>
|
| works just as well, don't really need the "title" string as the page will
| most likely have that in the code.
|
| Henry
|
| "Trevor L." wrote:
|
| > LouieLouie wrote:
| > > How does one specify that the Hyperlink is to open in a new window??
| >
| > In FP2003, open the page in Design View.
| > Right click the link
| > Select Hyperlink Properties
| > Click on Target Frame
| > Select New Window
| >
| > Or in Code view ,
| > <a href="page2.html" target="_blank" title="Page 2">
| > Page 2 </a>
| >
| >
| > --
| > Cheers,
| > Trevor L.
| > [ Microsoft MVP - FrontPage ]
| > MVPS Website: http://trevorl.mvps.org/
| > ----------------------------------------
| >