Sorry, I did not explain well.
What I want is to create string alias with Help Studio. In example:
C# Code:
// This code open Help File on page HelpPage1.html
Help.ShowHelp(this, "HelpPage1.html", HelpNavigator.TableOfContents);
// This code must open HelpPage1.html too
Help.ShowHelp(this, "AliasToHelpPage1.html", HelpNavigator.TableOfContents);
How cain I make an string alias from a topic page to another?
I am thinking on creating an AliasWidget with some javascript code like: document.location.href='HelpPage1.html', where HelpPage1.html must be a parameter when inserting the widget.
But, I am not sure it is possible to do neither how to do it.
Thank you very much.