Hi Mr!
I have the same problem with Mauricio Mazquez.
My code:
header of *.aspx, i import texteditor of dnn:
<%@ Register TagPrefix="dnn" TagName="editor" Src="~/controls/texteditor.ascx" %>
affter that, i definite two editor:
<dnn:editor id="txtEditor" runat="server" width="95%" height="400px" >
</dnn:editor>
<dnn:editor id="txtEditorEnglish" runat="server" width="95%" height="400px" >
</dnn:editor>
and i have a save linkbutton, in *.vb code
Protected Sub lbAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lbAdd.Click
Try
lblError.Text = Server.HtmlDecode(txtEditor.Text) + " ------ " + Server.HtmlDecode(txtEditorEnglish.Text)
Catch ex As Exception
ProcessModuleLoadException(Me, ex)
End Try
End Sub
txtEditorEnglish.Text return null when i work in FF.
please, help me!
thanks.