リッチテキストエディタCKeditor構成使用+アップロードピクチャ
リッチテキストエディタCKeditor構成使用+アップロードピクチャ
参考文献:
リッチテキストエディタCKeditor構成の使用
CKEditorとCKFinderの構成(ASP.NET環境)、古いバージョンは参考にできます
CKEditor+CKFinder ASP版ローカルコンピュータでの構成に問題がある
リッチテキストファイルCKEDITORアップロード画像機能(.net)を追加し、ckeditorアップロード画像発見が可能
CKEditor4.6.2画像/Flashアップロード及びプレビュー添付ファイルアップロードに一定の参考価値がある
リッチテキストエディタCKeditor構成使用+アップロードピクチャ
Ckeditorダウンロードアドレス:http://ckeditor.com/download
ダウンロード後のデフォルトはWebサイトのルートディレクトリの下にあるckeditorフォルダにあります
一、使用方法:1、ページにckeditorコアファイルckeditorを導入する.js
2、エディタを っているところにHTMLコントロールを する
ASPであれば.NET では、サーバ コントロール
コントロールにclass=「ckeditor」を けることに してください.
3、 するコントロールをエディタコードに き える
CKEDITOR.replace('TextArea1');
// ASP.NET <TextBox>
CKEDITOR.replace('tbContent');
// <TextBox> ,
CKEDITOR.replace('<%=tbContent.ClientID.Replace("_","$") %>');
4、コンフィギュレーションエディタ
ckeditorの構成はすべてckeditor/configに集中する.jsファイルでは、以下に一般的な構成パラメータを示します.
// , 'en'
config.language = 'zh-cn';
//
config.width = 400;
config.height = 400;
// , :'kama'( )、'office2003'、'v2'
config.skin = 'v2';
//
config.uiColor = '#FFF';
// ( 'Basic'、 'Full'、 )plugins/toolbar/plugin.js
config.toolbar = 'Basic';
config.toolbar = 'Full';
:
config.toolbar_Full = [
['Source','-','Save','NewPage','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'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'/',
['Styles','Format','Font','FontSize'],
['TextColor','BGColor']
];
//
config.toolbarCanCollapse = true;
//
config.toolbarLocation = 'top';// :bottom
//
config.toolbarStartupExpanded = true;
// “ ” plugins/resize/plugin.js
config.resize_enabled = false;
//
config.resize_maxHeight = 3000;
//
config.resize_maxWidth = 3000;
//
config.resize_minHeight = 250;
//
config.resize_minWidth = 750;
// ,
config.autoUpdateElement = true;
// ,
config.baseHref = ''
// z-index
config.baseFloatZIndex = 10000;
//
config.keystrokes = [
[ CKEDITOR.ALT + 121 /*F10*/, 'toolbarFocus' ], //
[ CKEDITOR.ALT + 122 /*F11*/, 'elementsPathFocus' ], //
[ CKEDITOR.SHIFT + 121 /*F10*/, 'contextMenu' ], //
[ CKEDITOR.CTRL + 90 /*Z*/, 'undo' ], //
[ CKEDITOR.CTRL + 89 /*Y*/, 'redo' ], //
[ CKEDITOR.CTRL + CKEDITOR.SHIFT + 90 /*Z*/, 'redo' ], //
[ CKEDITOR.CTRL + 76 /*L*/, 'link' ], //
[ CKEDITOR.CTRL + 66 /*B*/, 'bold' ], //
[ CKEDITOR.CTRL + 73 /*I*/, 'italic' ], //
[ CKEDITOR.CTRL + 85 /*U*/, 'underline' ], //
[ CKEDITOR.ALT + 109 /*-*/, 'toolbarCollapse' ]
]
// plugins/keystrokes/plugin.js.
config.blockedKeystrokes = [
CKEDITOR.CTRL + 66 /*B*/,
CKEDITOR.CTRL + 73 /*I*/,
CKEDITOR.CTRL + 85 /*U*/
]
// plugins/colorbutton/plugin.js.
config.colorButton_backStyle = {
element : 'span',
styles : { 'background-color' : '#(color)' }
}
// plugins/colorbutton/plugin.js
config.colorButton_colors = '000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF’
// “ ” plugins/colorbutton/plugin.js
config.colorButton_enableMore = false
// plugins/colorbutton/plugin.js
config.colorButton_foreStyle = {
element : 'span',
styles : { 'color' : '#(color)' }
};
// CSS
config.contentsCss = './contents.css';
//
config.contentsLangDirection = 'rtl'; //
//CKeditor
CKEDITOR.replace( 'myfiled', { customConfig : './config.js' } );
// plugins/dialog/plugin.js
config.dialog_backgroundCoverColor = '#fffefd'; //
config.dialog_backgroundCoverColor = 'white' //
// :0.0~1.0 plugins/dialog/plugin.js
config.dialog_backgroundCoverOpacity = 0.5
// : plugins/dialog/plugin.js
config.dialog_magnetDistance = 20;
// firefox safari plugins/wysiwygarea/plugin.js.
config.disableNativeSpellChecker = true
// : firefox plugins/wysiwygarea/plugin.js
config.disableNativeTableHandles = true; //
// config.disableObjectResizing = true;
config.disableObjectResizing = false //
// HTML
config.docType = 'his is Chinese: ." "This is Chinese: ." plugins/entities/plugin.js
config.entities_processNumerical = false;
//
config.extraPlugins = 'myplugin'; //
// plugins/find/plugin.js
config.find_highlight = {
element : 'span',
styles : { 'background-color' : '#ff0', 'color' : '#00f' }
};
// plugins/font/plugin.js
config.font_defaultLabel = 'Arial';
// : 、 、 plugins/font/plugin.js
config.font_names = 'Arial;Times New Roman;Verdana';
// plugins/font/plugin.js
config.font_style = {
element : 'span',
styles : { 'font-family' : '#(family)' },
overrides : [ { element : 'font', attributes : { 'face' : null } } ]
};
// plugins/font/plugin.js
config.fontSize_defaultLabel = '12px';
// plugins/font/plugin.js
config.fontSize_sizes ='8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px'
// plugins/font/plugin.js
config.fontSize_style = {
element : 'span',
styles : { 'font-size' : '#(size)' },
overrides : [ { element : 'font', attributes : { 'size' : null } } ]
};
// plugins/pastetext/plugin.js
config.forcePasteAsPlainText =false //
// “&” “&”plugins/htmldataprocessor/plugin.js
config.forceSimpleAmpersand = false;
// address plugins/format/plugin.js
config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };
// DIV plugins/format/plugin.js
config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };
// H1 plugins/format/plugin.js
config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };
// H2 plugins/format/plugin.js
config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };
// H3 plugins/format/plugin.js
config.format_h1 = { element : 'h3', attributes : { class : 'contentTitle3' } };
// H4 plugins/format/plugin.js
config.format_h1 = { element : 'h4', attributes : { class : 'contentTitle4' } };
// H5 plugins/format/plugin.js
config.format_h1 = { element : 'h5', attributes : { class : 'contentTitle5' } };
// H6 plugins/format/plugin.js
config.format_h1 = { element : 'h6', attributes : { class : 'contentTitle6' } };
// P plugins/format/plugin.js
config.format_p = { element : 'p', attributes : { class : 'normalPara' } };
// PRE plugins/format/plugin.js
config.format_pre = { element : 'pre', attributes : { class : 'code' } };
// plugins/format/plugin.js
config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';
// html , :
config.fullPage = false;
// “” plugins/wysiwygarea/plugin.js
config.ignoreEmptyParagraph = true;
// ラベルplugins/image/plugin.js
config.image_removeLinkByEmptyURL = true;
// の ネストにplugins/menu/pluginがカンマで られたラベル のセットが されます。js.
config.menu_groups ='clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea';
//サブメニュー の 、 :ms plugins/menu/plugin.js
config.menu_subMenuDelay = 400;
//「 」コマンドを すると、エディタの plugins/newpage/plugin.js
config.newpage_html = '';
//wordから をコピーして ってきた 、 のフォーマットを うかplugins/pastefromword/pluginを する.js
config.pasteFromWordIgnoreFontFace = true; //デフォルトでは
//wordドキュメントから り けた plugins/pastefromword/pluginの わりに、 ラベル を するか.js
config.pasteFromWordKeepsStructure = false;
//wordから を り けるときにフォーマットplugins/pastefromword/pluginを するかどうか.js
config.pasteFromWordRemoveStyle = false;
//バックグラウンド の に じて するHTMLコンテンツをフォーマットし、デフォルトは
config.protectedSource.push( //g ); // PHP Code
config.protectedSource.push( //g ); // ASP Code
config.protectedSource.push( /(]+>["s|"S]*?]+>)|(]+"/>)/gi ); // ASP.Net Code
//shift+Enterと したときに するラベル
config.shiftEnterMode = CKEDITOR.ENTER_P; //オプション:CKEDITOR.ENTER_BRまたはCKEDITOR.ENTER_DIV
//オプションの plugins/smiley/plugin.js.
config.smiley_descriptions = [
':)', ':(', ';)', ':D', ':/', ':P',
'', '', '', '', '', '',
'', ';(', '', '', '', '',
'', ':kiss', '' ];
// の plugins/smiley/plugin.js
config.smiley_images = [
'regular_smile.gif','sad_smile.gif','wink_smile.gif','teeth_smile.gif','confused_smile.gif','tounge_smile.gif',
'embaressed_smile.gif','omg_smile.gif','whatchutalkingabout_smile.gif','angry_smile.gif','angel_smile.gif','shades_smile.gif',
'devil_smile.gif','cry_smile.gif','lightbulb.gif','thumbs_down.gif','thumbs_up.gif','heart.gif',
'broken_heart.gif','kiss.gif','envelope.gif'];
// の plugins/smiley/plugin.js
config.smiley_path = 'plugins/smiley/images/';
//ページの み み に、 ボックスが ちにフォーカスplugins/editingblock/pluginを するかどうか.js plugins/editingblock/plugin.js.
config.startupFocus = false;
//ロード 、ソースコードと られる「source」と「wysiwyg」plugins/editingblock/pluginをどのように するか.js.
config.startupMode ='wysiwyg';
// み み に の plugins/showblocks/pluginを するかどうか.js
config.startupOutlineBlocks = false;
//スタイルファイルを み むかどうかplugins/stylescombo/plugin.js.
config.stylesCombo_stylesSet = 'default';
// オプション
config.stylesCombo_stylesSet = 'mystyles';
config.stylesCombo_stylesSet = 'mystyles:/editorstyles/styles.js';
config.stylesCombo_stylesSet = 'mystyles:http://www.example.com/editorstyles/styles.js';
// のインデックス
config.tabIndex = 0;
//ユーザがTABを と、エディタが するスペースの ()が0の 、 ボックスplugins/tab/pluginにフォーカスが します。js
config.tabSpaces = 0;
//デフォルトで するテンプレートplugins/templates/plugin.js.
config.templates = 'default';
//カンマで られたテンプレートファイルplugins/templates/plugin.js.
config.templates_files = [ 'plugins/templates/templates/default.js' ]
//テンプレートを する 、「 が 」ボックスでplugins/templates/pluginを するかどうか.js
config.templates_replaceContent = true;
//テーマ
config.theme = 'default';
// り しの ステップ plugins/undo/plugin.js
config.undoStackSize =20;
//CKEditorにCKFinderを し、ckfinderのパス が しいことに します。
//CKFinder.SetupCKEditor(null, '/ckfinder/');
2、いくつかの使い方
1、ページでエディタをインスタントに設定
// 1: , 70
CKEDITOR.replace('<%=tbLink.ClientID.Replace("_","$") %>',
{ toolbar:'Basic', height:70 });
// 2:
CKEDITOR.replace( 'editor1',
{
toolbar :
[
// ,
['Bold','Italic','Underline','Strike','Subscript','Superscript'],
//
['NumberedList','BulletedList','-','Outdent','Indent'],
//
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
//
['Link','Unlink','Anchor'],
// flash
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
'/',
//
['Styles','Format','Font','FontSize'],
//
['TextColor','BGColor'],
//
['Maximize', 'ShowBlocks','-']
]
}
);
3、コンパクトckeditor
Webサーバに配備する場合、以下のフォルダとファイルを削除できます.samples:サンプルフォルダ;
/_source:ソースプログラムが圧縮されていません;
/langフォルダの下でzh-cnを除去します.js、en.js以外のファイル(必要に応じて他の言語のファイルを保持してもよい);
ルートディレクトリの下のchanges.html(更新リスト)、install.html(インストール指向)、license.html(使用許可);
/skinsディレクトリの下で不要な皮膚は、一般的にV 2(簡単、地味)を用いるが、V 2だけを残す場合はconfigでなければならない.jsで皮膚を指定します.
4、バージョンの問題
CKEditorの公式サイトでダウンロードし、最もすべての機能をダウンロードし、最後に得られた圧縮パッケージはckeditor_4.1.1_full.zipは、simpleまたはstandedを選択すると、フォント色、背景色などの機能が使用できない場合があります.この機能はstandedバージョンではサポートされていません.['TextColor','BGcolor']が設定されているのに、テキスト色と背景色のオプションは表示されません.
5、デフォルトの段落タグを削除
CKEditorが自動的に追加した
ラベルを除去する方法は、実は簡単で、2つの方法があります.1.ckeditorディレクトリの下のconfig.jsは以下の構成パラメータを追加すればよい:
config.enterMode = CKEDITOR.ENTER_BR:
config.shiftEnterMode = CKEDITOR.ENTER_P:
2.エディタのデフォルトモードを直接変更するソースモード、ckeditorディレクトリのconfig.jsは以下の構成を追加します:
config.startupMode = 'source';
六、kcfinderと組み合わせて画像アップロードを実現
旧バージョン参照:CKEditorとCKFinderの構成(ASP.NET環境),
しかし、実際のアプリケーションではだめであることがわかり、新しいバージョンが変更されました.
後から参考:CKEditor+CKFinder ASP版のローカルコンピュータでの構成も発見できず、以下のように設定されています:
CKEditor config.js :
(zhongyuan);
config.filebrowserBrowseUrl = '/zhongyuan/ckfinder/ckfinder.html';
config.filebrowserImageBrowseUrl = '/zhongyuan/ckfinder/ckfinder.html?Type=Images';
config.filebrowserFlashBrowseUrl = '/zhongyuan/ckfinder/ckfinder.html?Type=Flash';
config.filebrowserUploadUrl = '/zhongyuan/ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Files';
config.filebrowserImageUploadUrl = '/zhongyuan/ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Images';
config.filebrowserFlashUploadUrl = '/zhongyuan/ckfinder/core/connector/asp/connector.asp?command=QuickUpload&type=Flash';
//
しかしダウンロードしたCKFinderにはcoreディレクトリがなく、ファイルが見つからないことをヒントにします:無言!これは有料です!よし!何とかしよう!
参考:リッチテキストファイルCKEDITORアップロード画像機能(.net)を追加し、ckeditorアップロード画像発見可能!
七、CKEDITORアップロード画像機能(.net)
第1の方法CKEDITOR自己コード機能を用いる
「プレビュー」には鳥の言葉が山積みになっていて、不快に見えます.1または2を使用してクリアできます.
1:ckeditor/plugins/image/dialogs/imageを開くことができます.jsファイル、「b.config.image_previewText」を検索するとこの鳥語が見つかります.(b.config.image_previewText|')単一引用符の内容はすべて削除されます.削除しないでください.
2:ckeditor/configを開く.jsファイル、
この関数に
を追加config.image_previewText = '';//プレビュー領域の表示内容を空にする
ckeditor/plugins/image/dialogs/imageを開く.jsファイル、「upload」を検索すると、この
が見つかります.id:'Upload',hidden:true
実際にアップロード機能が隠されていて、上のtrueをfalseに変更して、もしあなたの表示がhidden:!0、直接0に変更すれば表示できます.エディタを開くと、アップロード機能が見つかります.
サーバボタンにアップロードするイベントURLを設定し、アップロードしたファイルをそのURLに提出して処理することを指定し、
ckeditor/configを開く.jsファイル、
この関数に
を追加config.filebrowserImageUploadUrl = '../UploadImgHandler.ashx';//アップロード画像ボタンの処理URLを設定します.ここで設定したのは一般的な処理プログラムに提出します.これは自分で作成します.私のはルートディレクトリに作成したので、../、では、次はUploadImgHandlerの作成を開始します.ashx'ファイル内のコードは以下の通りです.
public void ProcessRequest(HttpContext context)
{
String callback = context.Request.QueryString["CKEditorFuncNum"].ToString();
///' File
HttpFileCollection files = HttpContext.Current.Request.Files;
for (int iFile = 0; iFile < files.Count; iFile++)
{
// ///'
HttpPostedFile postedFile = files[iFile];
//HttpPostedFile postedFile = files[0];
string fileName; //, fileExtension
fileName = System.IO.Path.GetFileName(postedFile.FileName);
string fileContentType = postedFile.ContentType.ToString();
if (fileContentType == "image/bmp" || fileContentType == "image/gif" ||
fileContentType == "image/png" || fileContentType == "image/x-png" || fileContentType == "image/jpeg"
|| fileContentType == "image/pjpeg")
{
if (postedFile.ContentLength <= 2097152)
{
string filepath = postedFile.FileName; // , , :C:\Documents and Settings\Administrator\My Documents\My Pictures\20022775_m.jpg
//string filepath = FileUpload1.FileName; // 20022775_m.jpg
string serverpath = context.Server.MapPath("~/UpLoadFile/ImageUpload/") + fileName;// C:\Inetpub\wwwroot\WebSite1\images\20022775_m.jpg
postedFile.SaveAs(serverpath);//
string imageurl = "http://localhost:13392/UpLoadFile/ImageUpload/" + fileName;// + + URL
// " "
context.Response.Write("");
context.Response.Write("window.parent.CKEDITOR.tools.callFunction(" + callback
+ ",'" + imageurl + "','')");
context.Response.Write(" ");
}
else
{
context.Response.Write("alert(' 2M!') ");
}
}
else
{
context.Response.Write("alert(' BMP、GIF、JPG、PNG !') ");
}
}
}
はい、画像をアップロードできます!ははは!残りの方法はまだ実験されていないので、保留して、研究を保留します!
はい、以上はCKEDITOR自身のアップロード機能を使用し、一般的なプロセッサを追加してアップロード機能を完了しました.
2つ目のアップロード機能の設定方法:自分のアップロードテンプレート(単独のアップロードページを指す)があれば、
ckeditor/plugins/image/dialogs/imageを開く.jsファイル、「urlMissing」を検索すると、このセクションが見つかり、}に、次のコードが追加されます:
{ type: 'button', id: 'myUpload', style:"margin-top:14px;", align:'center',label:'ローカルアップロード',onClick:function(){var retFile=showModalDialog("../UpLoadWeixinImg.aspx","dialogHeight:380;dialogWidth:600;");if (retFile != null) { this.getDialog().setValueOf('info', 'txtUrl', retFile); } } },
showModalDialog(.../UpLoadWeixinImg.aspx)は、URLへのリンク先を指定し、テンプレートをアップロードします.showModalDialogメソッドはIEと火狐の下で正常に動作します.Googleブラウザの下では互換性がないかもしれません.どうせ私はやってみましたが、window.openで代用できると聞きましたが、やってみませんでした.試してみてください.
次にUpLoadWeixinImgを見てみましょう.aspxアップロードページテンプレートのコードは以下の通りです:
///
///
///
///
///
protected void LinkBtnFileUploadImg_Click(object sender, EventArgs e)
{
if (this.FileUploadImg.HasFile)
{
string fileContentType = FileUploadImg.PostedFile.ContentType;
if (fileContentType == "image/bmp" || fileContentType == "image/gif"||
fileContentType == "image/png"|| fileContentType == "image/x-png"|| fileContentType == "image/jpeg"
|| fileContentType == "image/pjpeg")
{
int fileSize = this.FileUploadImg.PostedFile.ContentLength;
if (fileSize <= 2097152)
{
string fileName = this.FileUploadImg.PostedFile.FileName; //
string imageurl = "http://localhost:8665/WeiXinImg/" + fileName;
string filepath = FileUploadImg.PostedFile.FileName; // , , :C:\Documents and Settings\Administrator\My Documents\My Pictures\20022775_m.jpg
//string filepath = FileUpload1.FileName; // 20022775_m.jpg
string filename = filepath.Substring(filepath.LastIndexOf("\\") + 1);//20022775_m.jpg
string serverpath = Server.MapPath("~/WeiXinImg/") + filename;// C:\Inetpub\wwwroot\WebSite1\images\20022775_m.jpg
this.FileUploadImg.PostedFile.SaveAs(serverpath);//
// js
ClientScript.RegisterStartupScript(this.GetType(), "SayHello", "SayHello('" + imageurl + "') ");
}
else
{
Response.Write("alert(' 2M!') ");
}
}
else
{
Response.Write("alert(' BMP、GIF、JPG、PNG !') ");
}
}
else
{
Response.Write("alert(' !') ");
}
}
SayHello :
function SayHello(imgPath) {
window.returnValue = imgPath; //
window.close();
}
2つの方式の実現方式は同じで、具体的にどちらが使いやすいかは必要に応じて選択できます!
私の最終実装コードは以下の通りです:
using System;
using System.Web;
public class UploadImgHandler : IHttpHandler {
//public void ProcessRequest (HttpContext context) {
// context.Response.ContentType = "text/plain";
// context.Response.Write("Hello World");
//}
public bool IsReusable {
get {
return false;
}
}
public void ProcessRequest(HttpContext context)
{
String callback = context.Request.QueryString["CKEditorFuncNum"].ToString();
///' File
HttpFileCollection files = HttpContext.Current.Request.Files;
for (int iFile = 0; iFile < files.Count; iFile++)
{
// ///'
HttpPostedFile postedFile = files[iFile];
//HttpPostedFile postedFile = files[0];
string fileName; //, fileExtension
fileName = System.IO.Path.GetFileName(postedFile.FileName);
string fileContentType = postedFile.ContentType.ToString();
if (fileContentType == "image/bmp" || fileContentType == "image/gif" ||
fileContentType == "image/png" || fileContentType == "image/x-png" || fileContentType == "image/jpeg"
|| fileContentType == "image/pjpeg")
{
if (postedFile.ContentLength <= 2097152)
{
string filepath = postedFile.FileName; // , , :C:\Documents and Settings\Administrator\My Documents\My Pictures\20022775_m.jpg
//string filepath = FileUpload1.FileName; // 20022775_m.jpg
string serverpath = context.Server.MapPath("~/UpLoadFile/ImageUpload/") + fileName;// C:\Inetpub\wwwroot\WebSite1\images\20022775_m.jpg
postedFile.SaveAs(serverpath);//
int iEnd = HttpContext.Current.Request.Url.ToString().IndexOf("PlugIns");//
string strServerIP = HttpContext.Current.Request.Url.ToString().Substring(0, iEnd);// http://localhost:13392/
string imageurl = strServerIP + "UpLoadFile/ImageUpload/" + fileName;// + + URL
// " "
context.Response.Write("");
context.Response.Write("window.parent.CKEDITOR.tools.callFunction(" + callback
+ ",'" + imageurl + "','')");
context.Response.Write(" ");
}
else
{
context.Response.Write("alert(' 2M!') ");
}
}
else
{
context.Response.Write("alert(' BMP、GIF、JPG、PNG !') ");
}
}
}
}
posted@2018-01-11 14:58 wuling 129読書(...)コメント(…)コレクションの編集