Hi. I´ve inserted a TextBox in the CE Toolbar in order to create a MailForm. [ I want the msg field and the tbxEmail fields in one single object, eg: CuteEditor ] according to the following pic:
Now when I press the Save btn I need to get the value in the tbxEmail field, but how?
I´m trying:
private void ce1_PostBackCommand(object sender, System.Web.UI.WebControls.CommandEventArgs e)
{
if( string.Compare(e.CommandName,"Save",true)==0 )
{
/ / Check tbxEmail???
// this.ce1.ToolControls.IndexOf("tbxEmail");
???
}
}
Any tips?
Regards,
»»» KenA