در قرار دادن همزمان دو ادیتور در یک صفحه مشکل دارم قضیه چیه؟؟؟؟
protected void Page_Load(object sender, EventArgs e)
{
///Set txtText By Editor
String StrScriptText = "CKEDITOR.replace( '" + txtText.ClientID + "', {toolbar:'Medium'});";
Page.ClientScript.RegisterStartupScript(this.GetTy pe(), "Editor", StrScriptText, true);
///Set txtMoreText By Editor
string StrScriptMoreText = "CKEDITOR.replace( '" + txtMoreText.ClientID + "', {toolbar:'Medium'});";
Page.ClientScript.RegisterStartupScript(this.GetTy pe(), "Editor", StrScriptMoreText, true);
}