FineUI/FineUI.Examples/aspnet/fckeditor.aspx.cs

39 lines
1.1 KiB
C#
Raw Normal View History

2013-11-01 14:13:51 +08:00
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
namespace FineUI.Examples.aspnet
{
public partial class fckeditor2 : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
FCKeditor1.Value = "<p>This is some <strong>sample text</strong>. You are using <a href=\"http://www.fckeditor.net/\">FCKEditor</a>.</p>";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Alert.ShowInTop(HttpUtility.HtmlEncode(FCKeditor1.Value));
}
protected void Button2_Click(object sender, EventArgs e)
{
string content = "<p><strong>FineUI</strong> - 基于 ExtJS 的专业 ASP.NET 2.0 控件库,拥有完善的 AJAX 支持和丰富的界面效果。</p>";
PageContext.RegisterStartupScript(String.Format("updateFCKEditor({0});", JsHelper.Enquote(content)));
}
}
}