Q: creating help pages

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have an asp.net C# application and have many pages and each page has many
buttons. So I would like to have an help button and if user click it should
open another window and give help to the related page. How should I do that.
I am looking something like windows help file, once related subject is
display, user should be able to search other subjects. Is it possible
inasp.net and is there any example that I can integrate into my application.
Thanks,
 
I still use the HTML Help 1.4 SDK
http://msdn.microsoft.com/library/d...tmlhelp/html/hwMicrosoftHTMLHelpDownloads.asp to create a .chm file.

I then allow the user to download that .chm file from the web to a specific
folder on their PC once.

Every help button on the form would call a Javascript function passing a
specific category to view to showHelp function of the window object of the
browser, e.g.:
window.showHelp("c:\\Help\\MyHelpCatalog.chm::/" + CateogryName + ".htm")

There is also the new Visual Studio .NET Help Integration Kit which, I
believe, is not officially supported yet by Microsoft (?). There is another
newsgroup microsoft.public.vstudio.helpauthoring for this Integration kit.

HTH,
Phillip Williams
http://www.societopia.net
http://www.webswapp.com
 
Hi Phillip,

I may go with Visual Studio .NET Help Integration Kit, I was searching
Google it seems it is only for windows application, not for ASP.Net, is that
the case? Is there any C# ASP.Net example I can integrate into my application?

Thanks,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top