我在页面中使用以下代码注册了自定义控件:
<%@ Register Assembly="WebProject.Core" Namespace="WebProject.Core.UserInterfaces.TinyMCE"
TagPrefix="tinyMCE" %>
自定义控件放在页面上:
<tinyMCE:TextEditor runat="server" ID="uxContentAuthorInput" Mode="Full" />
要查找我使用的控件:
TextBox myContentAuthor = (TextBox)uxAuthorListDetailsView.FindControl("uxContentAuthorInput");
但不工作。
感谢您的帮助
答案 0 :(得分:1)
试试这个..
添加:
Using WebProject.Core.UserInterfaces.TinyMCE;
并更改控件以导入正确的类型:
TextEditor myContentAuthor = (TextEditor)uxAuthorListDetailsView.FindControl("uxContentAuthorInput");