我正在尝试在我的网页上添加一个 HTMLEditorExtender 控件。
在 ASPX 中,我有以下代码片段:
<ajaxToolkit:HtmlEditorExtender ID="test" runat="server"/>
当我尝试构建我的项目时,我收到以下编译警告:The type or namespace name 'HTMLEditorExtender' does not exist in the namespace 'AjaxControlToolkit'(Are you missing an assembly reference?)
在我后面的代码(C#)中,我尝试使用以下内容。
using AjaxControlToolkit.HTMLEditor;
但我得到了同样的构建错误。
我一直在使用这个网站作为参考:http ://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/HTMLEditor/HTMLEditor.aspx有没有我遗漏的东西?
此外,智能感知(我使用的是 Microsoft Visual Studios 2012)不会选择 HTMLEditor 控件,但它会从 AjaxControlToolkit 中选择其他控件,例如手风琴......