CKEditor4.1+CKFinder2.3.1 FOR MVC4 最新破解版:(2013-3-23)javascript
baidu share: http://pan.baidu.com/share/link?shareid=410130&uk=2735096069
CSDN下載地址:http://download.csdn.net/download/zengzhan/5172305
CKEditor4.0.2+CKFinder2.3.1 FOR MVC4 最新破解版:(2013-3-6)java
CSDN下載地址:http://download.csdn.net/download/zengzhan/5118263web
baidu share: http://pan.baidu.com/share/link?shareid=392177&uk=2735096069安全
CKEditor4.0+CKFinder2.3 FOR MVC4 最新破解版:(2012-11-21)服務器
CSDN下載地址:http://download.csdn.net/download/zengzhan/4792573asp.net
CKEditor3.6.4+CKFinder2.2.2 最新破解版:(2012-7-18)編輯器
CSDN下載地址:http://download.csdn.net/detail/zengzhan/4442731ide
CKEditor3.6.2+CKFinder2.1 最新破解版:網站
<%@ Register Assembly="CKEditor.NET" Namespace="CKEditor.NET" TagPrefix="CKEditor" %>
<CKEditor:CKEditorControl ID="editor1" BasePath="./ckeditor/" runat="server"></CKEditor:CKEditorControl>
protected override void OnLoad(EventArgs e)
{
CKFinder.FileBrowser _FileBrowser = new CKFinder.FileBrowser();
_FileBrowser.BasePath = "/ckfinder/";
_FileBrowser.SetupCKEditor(editor1);
}
ckfinder/config.ascx ui
public override bool CheckAuthentication()
{
//return false; 改這裏
// return HttpContext.Current.User.Identity.IsAuthenticated; 更安全
return true;
}
SetConfig():
BaseUrl = "~/ckfinder/userfiles/";
CKEditor 3.3.1 和 ckfinder 2.0 配置 with jQuery 1.42 請看33樓!
CKEditor 3.2 在 asp.net 下進行配置的方法:
一、CKEditor 不具有上傳功能,須要集成 CKFinder 才能實現上傳功能。
下載 ckeditor 並解壓到 ckeditor(在根目錄下);
下載 ckfinder 並解壓到 ckfinder (在根目錄下);
二者處於同級目錄下;
把ckfinder目錄裏的bin下的CKFinder.dll拷貝到網站目錄bin下,引用就好了。
二、在 aspx 頁面或者 master 模板頁 <head> 標籤中載入 ckeditor.js:
<scripttype="text/javascript"src="ckeditor/ckeditor.js"></script>
在<body>標籤中使用ckeditor:
<asp:TextBox ID="Content" runat="server" TextMode="MultiLine" Height="250px" Width="500px"></asp:TextBox>
與其餘 .net 控件使用方法相同,設置 Text='<%# Bind("info") %>' 能夠方便與數據源進行交互。
下面這段必須放在上面代碼的後面,不然初始化編輯器時會錯誤:
<script type="text/javascript">
// CKEDITOR.replace('<%=Content.ClientID%>', {});
vareditor = CKEDITOR.replace('<%=Content.ClientID%>');
CKFinder.SetupCKEditor(editor, '/ckfinder/'); //結合上傳控件
</script>
3. ckeditor裏面的config.js 配置
CKEDITOR.editorConfig = function( config )
{
config.language = 'zh-cn';//中文
config.uiColor = '#BFEE62';//編輯器顏色
config.font_names = '宋體;楷體_GB2312;新宋體;黑體;隸書;幼圓;微軟雅黑;Arial;Comic Sans MS;Courier New;Tahoma;Times New Roman;Verdana';
config.toolbar_Full =
[
['Source','-','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'],
'/',
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor'],
['Maximize', 'ShowBlocks','-','About']
];
config.toolbar_Basic =
[
['Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink','-','About']
];
config.width =771;//寬度
config.height = 250;//高度
};
配置完成後基本能夠了,可是運行點擊圖片管理裏面的瀏覽服務器按鈕… 出現如下提示:
解決方法:
ckfinder 裏面的config.ascx的配置:
public override boolCheckAuthentication()
{
return true;//(增長這句,若是你須要設置打開ckfinder訪問權限能夠在這裏設置哦,我這裏就不考慮權限了直接打開。)
// ... where Session[ "IsAuthorized" ] is set to "true" as soon as the
// user logs on your system.
//return false;//(註釋這句,默認這句未被註釋)
}
爲了去掉這個水印也簡單 分析
解決方法:
原始加密js代碼:
xx=’xxxx...’
設 qo='學無止境' 不能爲空就好了,不然上傳按鈕變爲不可用 哈哈 搞掂!/*en.call(window,qo);*/
沒有水印了,爽歪歪,最後來個圖,上傳成功 ok
注意:運行環境要在IIS下哦,否則有些頁面沒法顯示的
插外話,昨天研究fck時,提示:
解決:目錄不能有中文,否則加載fck編輯器時沒法運行,由於有中文,URL沒有轉碼致使解析拋出異常,換英文名就好了