本文介绍了FCKeditor编辑器在asp.net中的使用方法,包括FCKeditor上传图片问题、以及asp.net中web.config配置文件中的内容配置等,有需要的朋友参考下。
本节内容:
FCKeditor上传图片问题
解决方法:
1,引入FredCK.FCKeditorV2.dll文件
<!--StartFragment -->
2,在aspx页面中载入
复制代码 代码示例:
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server">
</FCKeditorV2:FCKeditor>
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
3,把下载的FCK中的fckeditor这个文件夹全部放入项目中
4,修改Web.config文件
复制代码 代码示例:
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<span style="background-color: #ff0000;"><httpRuntime requestValidationMode="2.0"/>
<pages validateRequest="false"/></span>
</system.web>
<span style="background-color: #ff0000;"><appSettings>
<add key="FCKeditor:UserFilesPath" value="/upload"/>
</appSettings></span>
</configuration>
5,修改fckeditor文件夹下的fckconfig.js
复制代码 代码示例:
var _FileBrowserLanguage = '<span style="background-color: #ff0000;">aspx</span>' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = '<span style="background-color: #ff0000;">aspx</span>' ; // asp | aspx | cfm | lasso | perl | php | py
6,修改fckeditoreditorfilemanagerconnectorsaspx文件夹下的config.ascx
复制代码 代码示例:
private bool CheckAuthentication()
{
return<span style="background-color: #ff0000;"> true</span>;
}
public override void SetConfig()
{
// SECURITY: You must explicitly enable this "connector". (Set it to "true").
Enabled = CheckAuthentication();
// URL path to user files.
UserFilesPath = <span style="background-color: #ff0000;">"/upload</span>/";
至此,fckeditor编辑器中上传图片的问题得以解决。