I had created my original websites with FrontPage. I used their shared borders and navigation structure.
The procedure below will convert the old FrontPage Parent Navigation Nodes into a string variable containing HTML links. The string can then be pasted wherever needed onto your new page.
It will quite often be an "up" link to the page that contains down links to this page and its siblings.
Dim objGen1 As NavigationNode Set objGen1 = Application.ActiveWeb. _ AllNavigationNodes.Item(intNodeNumber) On Error Resume Next GetParentLink = "<a href=" & _ """" & objGen1.Parent.File.Name & """" & _ ">" & objGen1.Parent.Label & "</a>"
You have to get the intNodeNumber of the target page first in order to find its Parent node.