imterpsfan3
Programmer
I have compiled a HTML Help file and I am trying to display context-senstive help in a web form, using the window.showHelp function. However, the help file doesn't display and I get an error on the page. The Help File works correctly for a windows app, so I know it's not the Help File. What am I doing wrong here?
Code:
<script language="JavaScript">
function ShowContextHelp()
{
//Display Help for this context.
window.showHelp(@"c:\Development\HTML Help\DemoHelp.chm::/Topic3.htm");
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout" >
<form id="Form1" method="post" runat="server">
<h2>Context Sensitive Help</h2>
<input type="text" >
<br>
<input type="button" onfocus = "ShowContextHelp()" value="Button" >
<br>
<input id="chkHelp" type="checkbox">Show user assistance.
</form>
</body>