asp.net 中的 ckeditor
我必须在我的应用程序中使用 ckeditor,但我不知道如何编写
@ Register Assembly="" Namespace="" TagPrefix="" %>
我从哪里可以获得组件?
I have to use a ckeditor in my application but I dont know how to write the
@ Register Assembly="" Namespace="" TagPrefix="" %>
From where I could get the assembly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在
web.config
部分你可以编写:In
web.config
section you can write:实际上,最好不要使用 ASP.NET CKEditor 控件,而是直接使用 CKEditor。该控件已过时(版本 3.6 而不是 4.1)并且没有必要。基本上,使用多行文本框并将其设为 CKEditor 类。不要忘记将 ckEditor.js 添加到 head 部分:
web.config
Test.aspx
Test.aspx.cs
Actually, best is not to use the ASP.NET CKEditor control but use CKEditor directly. The control is outdated (version 3.6 instead of 4.1) and not necessary. Basically, use a multiline textbox and make it of the class CKEditor. Don't forget to add the ckEditor.js to the head section:
web.config
Test.aspx
Test.aspx.cs
ckeditor 有一个很好的 asp.net 包装控件: http:// cksource.com/forums/viewtopic.php?f=11&t=15882
There is a nice asp.net wrapper control for the ckeditor: http://cksource.com/forums/viewtopic.php?f=11&t=15882
答案是,
但在此之前,在您的应用程序中创建一个 ckeditor 文件夹并粘贴您已下载的内容,
The answer will be
but before that make a ckeditor folder in your application and paste the contents that you have downloaded,