I want to load the control with some text....Assuming that txtDef is a HTML Control (FCKEditor)
<%@ Register TagPrefix="dnn" TagName="TextEditor" Src="~/controls/TextEditor.ascx"%>
<dnn:texteditor id="txtDef" runat="server" height="400" width="500" />
If I do (C#):
txtDef.Mode = "Basic";
txtDef.Text = "What´s going on";
Everything is OK (I see the text under the text control), But If I want to load the RichText mode, I should change the code lines for:
txtDef.Mode = "Default";
txtDef.Text = "What´s going on";
Nothing Happend, the text are is empty. What am I doing wrong?
Thabnks for your help,
Alfonso