I have a simple page with a standard CE control, a button and a textbox.
If the button is pressed, the html coded version of the text should appear in the textbox.
This works fine for IE. In FireFox (both Windows and Mac) however, nothing is shown in the textbox and the CE textbox is cleared. If I first click the save button in the CE control and than click the button, it works.
I'm using the latest version of CE (5.0.0.0). I use all the defaults, nothing fancy. Here is the (extreme simple) code snippet:
aspx
...
<CE:Editor id="m_editor" runat="server"></CE:Editor>
<asp:Button id="m_button" runat="server" Text="Display"></asp:Button>
<asp:TextBox id="m_textbox" runat="server"></asp:TextBox>
...
aspx.cs
...
private void m_button_Click(object sender, System.Eventargs e)
{ m_textbox.Text = m_editor.Text; }
...