How to create one hyperlink that links multiple targets or frames in FrontPage 2003 (825496)
The information in this article applies to:
- Microsoft Office FrontPage 2003
For a Microsoft FrontPage 2002 version of this article, see 310900.
IN THIS TASKSUMMARYThis article describes how to create a single hyperlink in
Microsoft Office FrontPage 2003 that links to multiple targets. Note This article assumes that you have already created a frames page
and saved it to your Web site. back to
the topCreate the Hyperlink- In FrontPage 2003, select the text where you want to create
the hyperlink, and then click Hyperlink on the
Insert menu.
- In the Insert Hyperlink dialog box, click
to select the page that you want to link to.
The page name appears in
the Address box. - Click Target Frame, select an item in the
Common targets box, or click one of the rectangles in the
graphic, and then click OK.
- Click OK to close the Insert
Hyperlink dialog box.
back to the topModify Hyperlink Properties- Click the Code (Show Code
View) tab.
- Locate the hyperlink tag that you created in the "Create
the Hyperlink" section earlier in this article, for example:
<a target="rtop" href="SomePage.htm">SomePage</a>
- Insert the following onClick attribute between .htm" and > in the anchor tag:
onClick="parent.frames[n].location.href='URL';"
where n indicates the number of the
frame where you want the resource to appear and URL
is the Uniform Resource Locator of the page that you want to appear in that
frame, for example:
<a target="rtop" href="SomePage.htm" onClick="parent.frames[2]
.location.href='AnotherPage.htm';">SomePage</a>
Note that because frame numbers start at zero, parent.frames[2]
indicates the third frame in a collection.
Note You may receive an error message if you copy the examples
directly from this article and paste them into FrontPage 2003. The angle
brackets (< and >) may appear as escaped HTML code (< and >). To
work around this behavior, paste the script into a blank Notepad document, and
then copy it from Notepad before you paste it into FrontPage 2003. - On the File menu, click
Save.
back to the
top
Modification Type: | Minor | Last Reviewed: | 2/23/2006 |
---|
Keywords: | kbHOWTOmaster KB825496 kbAudEndUser |
---|
|