I have a master page, with a help link in the top menu. This link should contain the a dynamic bookmark from the current page, so that the user scrolls to the help for the page he is currently seeing.
<a href='help.aspx#[NameOfCurentPage]'>Help</a>
How would you implement this?
Another thing you could do is reference the master page through the content page itself.
To make it easier on myself, I create a publicly accessible method in the master page itself:
Then in the content page, I get a reference to the master page through the following…