无法从代码隐藏中使用自定义的 Ajax HTML 编辑器
我正在自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道这是否有帮助,但尝试将其放在代码隐藏文件的顶部:
这样做我能够以编程方式创建一个编辑器并访问其成员:
I don't know if this will help but try putting this at the top of your code-behind file:
Doing this I was able to create an editor programatticaly and access its members: