views:

2477

answers:

1

I am using FCKeditor as web editor in my asp.net mvc beta application.

I inserted FCKeditor in Create.aspx page and every function of FCKeditors works well except image file uploading from my local pc :(

I changed some configuration as FCKeditor's document

Here's I changed,

fckconfig.js

var _FileBrowserLanguage    = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage    = 'aspx' ; // asp | aspx | cfm | lasso | perl | php | py

config.ascx

Enabled = true;

I made folder named 'userfiles' with access role as everything for ASPNET user.

'userfiles' folder is located in MyAppRoot/userfiles and MyAppRoot/Views/userfiles.

Then, I tried to upload image file in the image file browser, but there is no response.

Do I need something to config more?

Thanks in advance.

+3  A: 

Oooops, I forgot refer the file for .Net FredCK.FCKeditorV2 :)

It works fine.

Kwon