0

我正在尝试在我的网页上添加一个 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 中选择其他控件,例如手风琴......

4

1 回答 1

1

我意识到我在我的 aspx 页面的标题处有错误的寄存器。在我的 ASPX 页面顶部包含以下内容并且它有效:

<%@ Register
Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="HTMLEditor" %>
于 2012-12-03T22:57:09.423 回答