Considerations for integration of ckeditor and ckfinder

Source: Internet
Author: User

Environment Description

The environments used are vs2010,. net4.0, XP, ie8.0, ckeditor. Net 3.6.2, and ckfinder2.1.1.

File preparation

Copy the ckeditor directory under the ckeditor _ sample directory to the website root directory.

Copy the ckfinderdirectory and delete the _ sampledirectory, _source, binand .txt files.

AdjustmentCode

Adjust the code in the sendresponse method in ckfinder and fileuploadcommandhandler. CS.

Httppostedfile ofile = httpcontext. Current. Request. Files [httpcontext. Current. Request. Files. allkeys [0];

Change to -->

If (httpcontext. Current. Request. Files. Count <= 0) return;
Httppostedfile ofile = httpcontext. Current. Request. Files [0];

Because this old error is reported, it is sometimes caused by the empty set of files after the endpoint.

Configuration Integration

Reference ckeditor. net. dll and ckfinder. dll, and add ckeditor to the toolbox.

Add the following code to page initialization (generally page_load) to enable the file upload function of ckeditor.

Ckfinder. filebrowser _ filebrowser = new ckfinder. filebrowser ();
_ Filebrowser. basepath = "/ckfinder /";
_ Filebrowser. setupckeditor (ckeditor1 );

 

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.