我这个特懒,前几天看了一下 ckeditor 放程序中又要引用JS,又要加如 textare之类的,又要写脚本调用等等,感觉很麻烦,还有就是上传,要整合 ckfinder,感觉非常麻烦,所以就自己封装了这个简单控件,重写了上传这块.支持上传到远程服务器.效果如下.
用得着的哥们可以去下载过来试试,欢迎拍砖.
源码版可以跟我要
需要远程提交上传文件的时候,请将节:
EnableUpload:true|false 是否开启上传
web.config > appSettings > Devin:CKeditor.RemoteDomain 远程接受域名
web.config > appSettings > Devin:CKeditor.FileSavePath 远程提交域名,结尾不需要 / 号
web.config > appSettings > Devin:CKeditor.BasePath CK文件包路径,须以 / 结尾
web.config > system.web > path="*.ckeditor" type="Devin.CKeditor.Uploader" verb="GET,POST" 上传接受文件
web.config > system.web > path="*.ckeditor" type="Devin.CKeditor.Uploader" verb="GET,POST" 远程提交接受文件
远程提交需有一个接受端程序,请看项目:Remote