现在已经做好一个chm帮助文件,我能在Windows Form中做到Help.ShowHelpIndex(this, helpfile);可在Web Form中没有Help,我作了一个类help,可提示:缺少using引用??
using System;
using System.ComponentModel;
using System.Drawing;
namespace licChart
{
public class help:System.Web.UI.Page
{
public help(string helpfile)
{
string helfile="D:\\help.chm";
Help.ShowHelpIndex(this, helpfile);
}
}
}