有没有在asp.net中实现Ckeditor(浏览服务器-上传)功能的例子?

发布于 2024-09-03 07:34:44 字数 423 浏览 8 评论 0原文

这是我对这个不错的网站的第一个问题:) ...我在我的 asp.net 网站中使用 ckeditor.com,它有一个很棒的功能,但如果有的话,在插入图像时检查完整的功能示例,您有两个功能(上传到服务器) - 浏览服务器并选择图像),如下图所示

http://i45.tinypic.com /2rmp5ds.jpg

我的问题:
1- 浏览服务器功能与另一个名为 CKfinder 的产品集成。我不想使用它,我在 asp.net 中搜索这样的产品,并且可以与 ckeditor 集成吗?
2-是否有一个示例上传图像功能可以保存在SQL DB中并可以与ckeditor集成?

预先感谢您的期待合作

it's my first question to this nice site :) ... i use ckeditor.com in my asp.net web site and it have a great features but if any check the full feature example when inserting image you have two feature ( upload to server - browse server and choose image ) as shown in below image

http://i45.tinypic.com/2rmp5ds.jpg

My Questions :

1- Browse Server function integrate with another product called CKfinder .. i don't want to use it i search for such one but in asp.net and can be integrating with ckeditor ?

2- is there an example Upload image function that can save in SQL DB and can be integrated with ckeditor ?

Thanks in advance for your expected cooperations

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最佳男配角 2024-09-10 07:34:44

我对 CK Editor 不太了解,但我建议您看一下免费文本框,它具有相同的功能,您也可以上传照片。

I don know much about CK Editor, but I would like to suggest you to take a look at free text box, it has the same features and u can manage to upload photo as well.

唠甜嗑 2024-09-10 07:34:44

您不需要使用 Ckfinder。只需在 ckeditor.replace 中使用下面的代码,它就会为您提供图像窗口上的浏览服务器按钮和上传功能,而无需与任何其他插件集成。这些都是Ckeditor的功能。

filebrowserImageBrowseUrl : your image loading path
            filebrowserWindowWidth : '640',
        filebrowserWindowHeight : '480',
    filebrowserImageUploadUrl : '/uploader/upload.php?type=Images',

You don't need to use Ckfinder. Just use below code in ckeditor.replace it will give you browse server button on image window and upload functionality by not integrating with any other plugin. These are all Ckeditor functions.

filebrowserImageBrowseUrl : your image loading path
            filebrowserWindowWidth : '640',
        filebrowserWindowHeight : '480',
    filebrowserImageUploadUrl : '/uploader/upload.php?type=Images',
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文