Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Context Sensitive Help Not Working

Status
Not open for further replies.

imterpsfan3

Programmer
Jul 22, 2005
160
US
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>

 
I should also add that I am running Windows XP Pro SP2 on this machine, which also has the IIS. I am using Visual Studio 2003. I have read about scenarios where the windows.showHelp doesn't work.

 
No, you can use this for web forms. I have seen an example, but cannot get it to work.

 
>> window.showHelp(@"c:\Development\HTML Help\DemoHelp.chm::/Topic3.htm");


is an IE only command and that too i think it can be restricted in systems, but i have a doubt, where exactly are ur help files? cause the path that u give in javascript will try to open a file the the client's "c:\Development\HTML Help\DemoHelp.chm::/Topic3.htm" and NOT the server's "c:\Development\HTML Help\DemoHelp.chm::/Topic3.htm".

and that will cause a Security error. see if the icon in the status bar(that says Done) changes when u call the function...

Known is handfull, Unknown is worldfull
 
You can't open a server side file by using a client language such as javascript. You'll have to pop up a new window in javascript and have a page that will server the relevant text.


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top