我在我的asp.net mvc beta应用程序中使用FCKeditor作为网页编辑器。
我在Create.aspx页面中插入了FCKeditor,FCKeditors的每个功能都运行良好,除了从我的本地PC上传图像文件:(
我将部分配置更改为FCKeditor's document
我改变了,
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;
我创建了名为'userfiles'的文件夹,其访问角色为ASPNET用户的所有内容。
'userfiles'文件夹位于MyAppRoot/userfiles and MyAppRoot/Views/userfiles
。
然后,我尝试在图像文件浏览器中上传图像文件,但没有响应。
我需要更多配置吗?