using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.form
{
public partial class htmleditor : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
HtmlEditor1.Text = "FineUI(开源版)
基于 ExtJS 的开源 ASP.NET 控件库。
FineUI的使命
创建 No JavaScript,No CSS,No UpdatePanel,No ViewState,No WebServices 的网站应用程序。
支持的浏览器
Chrome、Firefox、Safari、IE 8.0+
授权协议
Apache License v2.0
注:ExtJS 库在 GPL v3 协议下发布(http://www.sencha.com/license)。
相关链接
论坛:http://fineui.com/bbs/
示例:http://demo.fineui.com/
文档:http://fineui.com/doc/
下载:http://fineui.codeplex.com/
";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
TextArea1.Text = HtmlEditor1.Text;
}
protected void Button2_Click(object sender, EventArgs e)
{
HtmlEditor1.Text = TextArea1.Text;
}
}
}