我在我的项目中使用 CKEditor,但我试图让它工作而不需要在我使用它的每个页面中声明程序集。
我声明的程序集是这个:
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
按照本网站上的说明,我在 web.config 中进行了以下更改
<system.web>
<pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
<controls>
<add tagPrefix="CKEditor" assembly="CKEditor.NET"/>
</controls>
</pages>
</system.web>
但我不断收到此错误
解析器错误消息:在 tagPrefix 条目中发现无效或缺少的属性。对于用户控制,您还必须指定“tagName”和“src”。对于自定义控件,您还必须指定“命名空间”和可选的“程序集”
我不确定我做错了什么。也许是一件愚蠢的事情,不确定。