通过Web.config 文件配置声明:
<system.web>
<pages>
<controls>
<add tagPrefix="Editor" src="~/Admins/EditorControl.ascx" tagName="EditorControl" />
</controls>
</pages>
</system.web>
注册完后,可以用设定好的 tagprefix (标识前缀)和标识符号名( tagname)来声明这些控件。
<html>
<body>
<form id="form1" runat="server">
<Editor:EditorControl ID="MyEditorr" runat="server" />
</form>
</body>
</html>
网友评论