1. 下载FCKEditor_2.6.3.zip,解压出fckeditor放于网站根目录下,文件夹包含FCKEditor的一些配置文件
2. 下载FCKeditor.Net_2.6.3.zip,需要使用的是里面的dll文件(FredCK.FCKeditorV2.dll)
3. 将dll添加到VS的控件中去,以后可以直接往页面上拖动了
4. 拖FCKEditor到页面中,增加BasePath="~/fckeditor/" 这个属性(注意:此处的路径对应第一步所放fckeditor路径)
[小提示]
1.编辑器中Tab键可用,可以设置FCKConfig.TabSpaces= 1 ;//Tab可以使用,0不可以1可以
2.ToolbarSet可以按照Default和Basic进行修改
此时,就可以运行看到FCKEditor会出现在页面中了。
一、让FCKEditor适应不同的语言
<span>请选择显示语言</span><asp:DropDownList ID="lang" runat="server" AutoPostBack="True"
onselectedindexchanged="lang_SelectedIndexChanged" >
<asp:ListItem Value="zh-cn" Selected="True">简体中文</asp:ListItem>
<asp:ListItem Value="zh">繁体中文</asp:ListItem>
<asp:ListItem Value="en">英文</asp:ListItem>
<asp:ListItem Value="ja">日文</asp:ListItem>
<asp:ListItem Value="de">德文</asp:ListItem>
<asp:ListItem Value="fr">法文</asp:ListItem>
</asp:DropDownList><br />
protected void lang_SelectedIndexChanged(object sender, EventArgs e)
{
fck1.Config["AutoDetectLanguage"] = "false";//这句话必须要的,否则不起作用
fck1.Config["DefaultLanguage"] = lang.SelectedValue;
fck1.Value = "使用<B><font color=red>"+lang.SelectedItem.Text+"</font></b>进行显示.";
}
二、为FCKEditor编辑器选择Skin,默认带有三种Skin,可以从http://sourceforge.net/tracker/?group_id=75348&atid=740153进行下载
<span>请选择皮肤</span><asp:DropDownList ID="skin" runat="server"
AutoPostBack="True" onselectedindexchanged="skin_SelectedIndexChanged">
<asp:ListItem Selected="True">Default</asp:ListItem>
<asp:ListItem>Office2003</asp:ListItem>
<asp:ListItem>Silver</asp:ListItem>
</asp:DropDownList>
</div>
<asp:FCKeditor ID="fck2" BasePath="~/fckeditor/" runat="server">
</asp:FCKeditor>
protected void skin_SelectedIndexChanged(object sender, EventArgs e)
{
fck2.Config["SkinPath"] = Server.MapPath("~/fckeditor/editor/skins/" + skin.SelectedValue+"/");
}
由于最近Sourceforge.net网站在国内必须通过代理才能访问,所以附上一个下载链接,下载地址