Easy Image不在asp.net中由ckeditor上传到Director中

时间:2018-10-22 05:27:04

标签: asp.net ckeditor

我想使用ckeditor从后端上传内容和图像,其中内容成功上传并显示在前端,但是图像未显示在首页上,请提供帮助。

1 个答案:

答案 0 :(得分:0)

首先,您不应该使用ASP.NET control。它被视为过时的,仅应由旧版应用程序使用。正确的方法是使用最新的CKEditor 4.x JavaScript,并在创建编辑器的文本区域附加Code Behind。

使用正确的编辑器后,您可以使用3个选项来启用图像上传:

  1. 您可以使用商业文件管理器,例如CKFinder:https://ckeditor.com/docs/ckfinder/ckfinder3/https://ckeditor.com/docs/ckfinder/ckfinder3-net/
  2. 您可以使用商业Easy Image服务:https://ckeditor.com/docs/cs/latest/guides/easy-image/quick-start.htmlhttps://ckeditor.com/docs/ckeditor4/latest/guide/dev_easyimage_integration.html
  3. 您可以创建自己的文件管理器/自定义上传器。 “文件管理器”部分已对此进行了说明(请阅读所有6个链接):https://ckeditor.com/docs/ckeditor4/latest/guide/dev_file_browse_upload.html

希望有帮助。