How to get and set text for RichTextEditor control in client side?
You can get and set text for RichTextEditor from clientside using the following code:
[JavaScript]
//Get Text function GetText() {
alert(RTE1.GetText());
}
//Set Text function SetText() {
RTE1.SetText("Hi");
}