PDA

View Full Version : Hyperlink to a specific location with frontpage2003



kenone
15 May 2007, 12:25 AM
Hi...
I am using MS Frontpage2003....I just want to create a hyperlink to a specific location or page of the pdf document(actually they are articles in the act) and display them on my web site accordingly.Which way should I go about???If I cant do it with Frontpage what other tools are available???
Thanks
appreciating....
ken

Wickham
15 May 2007, 01:41 AM
You have to create an anchor in the pdf document, either to a page or a specific place. You need to have the publisher rights for the pdf doc to do this.

Then your hyperlink in your FrontPage html file points to it like:
<a href="www.my-site.com/my-pdf-doc.pdf#page3">Page 3 in pdf doc</a>

which is a normal anchor code.

I believe you have to use an external url, not a relative one like
<a href="mypdf.pdf#page3">Page 3 in pdf doc</a>

I've never done it.

See http://forums.devshed.com/html-programming-1/how-to-make-an-anchor-in-pdf-and-link-to-333232.html
and google "anchor in pdf" for more examples.