无法从代码隐藏中使用自定义的 Ajax HTML 编辑器

发布于 2024-08-28 22:58:20 字数 558 浏览 4 评论 0原文

我正在自定义 ajax html 编辑器。我正在创建一个派生自 ajax html 编辑器的类,并重写 FillTopToolbar() 方法以具有有限的工具栏按钮。我正在尝试在我的 aspx 页面中使用它。

<%@ Register namespace="Content" tagprefix="edit" %>
<edit:MyEditor runat="server" Width="100%" Height="250px"/>

我可以在我的 aspx 页面中看到编辑器。 当我向控件提供 ID 时,问题就出现了,

<edit:MyEditor ID="htmlEditor" runat="server" Width="100%" Height="250px"/>

我在下面一行的设计器文件中收到错误。

protected global::Content.MYHTMLEditor htmlEditor;

我无法在代码后面使用它。我用的是VS 2010。

I am customizing the ajax html editor. I am creating a class which derives from ajax html editor, and overriding FillTopToolbar() method to have limited toolbar buttons. I am trying to use this in my aspx page.

<%@ Register namespace="Content" tagprefix="edit" %>
<edit:MyEditor runat="server" Width="100%" Height="250px"/>

I am able to see the editor in my aspx page.
The problem comes when I give an ID to the control

<edit:MyEditor ID="htmlEditor" runat="server" Width="100%" Height="250px"/>

I get an error in the designer file in the below line.

protected global::Content.MYHTMLEditor htmlEditor;

I am not able to use it in code behind. I am using VS 2010.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

英雄似剑 2024-09-04 22:58:20

我不知道这是否有帮助,但尝试将其放在代码隐藏文件的顶部:

using AjaxControlToolkit.HTMLEditor;

这样做我能够以编程方式创建一个编辑器并访问其成员:

Editor tempEditor = new Editor();

I don't know if this will help but try putting this at the top of your code-behind file:

using AjaxControlToolkit.HTMLEditor;

Doing this I was able to create an editor programatticaly and access its members:

Editor tempEditor = new Editor();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文