温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:MyWebPages51aspx汉化最终版
1/* 2
* FCKeditor - The text editor for internet 3
* Copyright (C) 2003-2005 Frederico Caldeira Knabben 4
* 5
* Licensed under the terms of the GNU Lesser General Public License: 6
* http://www.opensource.org/licenses/lgpl-license.php 7
* 8
* For further information visit: 9
* http://www.fckeditor.net/ 10
* 11
* "Support Open Source software. What about a donation today?" 12
* 13
* File Name: FCKeditorDesigner.cs 14
* The EditorDesigner class defines the editor visualization at design 15
* time. 16
* 17
* File Authors: 18
* Frederico Caldeira Knabben (fredck@fckeditor.net) 19
*/ 20
21
using System ; 22
using System.Globalization ; 23
24
namespace FredCK.FCKeditorV2 25
{ 26
public class FCKeditorDesigner : System.Web.UI.Design.ControlDesigner 27
{ 28
public FCKeditorDesigner() 29
{ 30
} 31
32
public override string GetDesignTimeHtml() 33
{ 34
FCKeditor control = (FCKeditor)Component ; 35
return String.Format( CultureInfo.InvariantCulture, 36
"<div><table width=\"{0}\" height=\"{1}\" bgcolor=\"#f5f5f5\" bordercolor=\"#c7c7c7\" cellpadding=\"0\" cellspacing=\"0\" border=\"1\"><tr><td valign=\"middle\" align=\"center\">FCKeditor V2 - <b>{2}</b></td></tr></table></div>", 37
control.Width, 38
control.Height, 39
control.ID ) ; 40
} 41
} 42
} 43



* FCKeditor - The text editor for internet

}