You can put the HTML help pages on a disk next to your application. To display the help page, simply launch it and let the default browser take care of this:
string appPath = Assembly.GetEntryAssembly().Location;
string filename = Path.Combine(Path.GetDirectoryName(appPath), "help.htm");
Process.Start(filename);
source
share