在asp.net类库中使用ckeditor
我需要创建一个带有标题和正文模板的类库。标题和正文都是文本框。在正文中我想使用 CKEditor 作为文本编辑器。此外,编辑器还包含用于浏览图像和文件的ImageBrowser.aspx
和LinkBrowser.aspx
。
到目前为止,我已经直接在aspx页面中使用了CKEditor。但现在我将在类库中使用它,这样我就可以拥有一个将在我的 Web 应用程序中使用的 dll 文件。
出路何在?寻求建议。谢谢。
I need to create a class library with title and body template. Both title and body are textboxes. In the body I want to use CKEditor as text editor. Further, the editor contains ImageBrowser.aspx
and LinkBrowser.aspx
for browsing images and files.
So far, I have used CKEditor directly in aspx page. But now I am going to use it in a class library so that I can have a dll file that I will use in my web application.
What's the way out? Seeking advices. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有人已经为您完成了 - http://syrinxckeditor.codeplex.com/
someone has already done it for you - http://syrinxckeditor.codeplex.com/
我不久前做了一个 CMS,它可以免费使用,还有所有其他 GPL 的东西。我使用 CKEditor 来提供跨解决方案的内容编辑。如果您喜欢,请下载并看看它是如何完成的。
http://hci.me.uk/contentmanagement/
解决方案中涉及以下文件所见即所得内容编辑:
当用户登录编辑各个部分时,它们会显示一个 ckeditor,然后将内容保存在xml 文件。还有一个文件夹可以从编辑器上传内容并管理文件。
希望这对您有帮助
I did a CMS a while ago which is free to use and all the other GPL stuff. I use CKEditor to provide the content editing across the solution. If you like download it and see how its done.
http://hci.me.uk/contentmanagement/
In the solution the following files are involved in the WYSIWYG content editing:
They present a ckeditor when user the logged in to edit various sections and then content is saved on the xml file. There is also folder to uploading stuff from the editor and managing the files.
Hope this helps you