I've installed the recent version of FCKeditor as defined by wiki postings/guide for using the .Net control in an asp.net page.
I've added the control to my aspx page within an asp:Wizard step control as follows:
<FCKE:FCKeditor id="DescriptionTextBox" runat="server"
ToolbarSet="Basic" BasePath="~/FCKeditor/"
EnableViewState="True" Width="600" Height="400" />
The Issue I'm experiencing is erratic behavior of the FCKE losing it's Value as I step back and forth between the wizard's steps. Every now and then, I have no issue and ViewState sticks as I progress through the steps (back and forth), but more often than not, both the visible presentation within FCKE and the FCKeditor.Value programatic access is empty when I leave the step.
Is this loss of ViewState a KnownIssue?, is there a workaround?
Thanks for assistance.
I've added the control to my aspx page within an asp:Wizard step control as follows:
<FCKE:FCKeditor id="DescriptionTextBox" runat="server"
ToolbarSet="Basic" BasePath="~/FCKeditor/"
EnableViewState="True" Width="600" Height="400" />
The Issue I'm experiencing is erratic behavior of the FCKE losing it's Value as I step back and forth between the wizard's steps. Every now and then, I have no issue and ViewState sticks as I progress through the steps (back and forth), but more often than not, both the visible presentation within FCKE and the FCKeditor.Value programatic access is empty when I leave the step.
Is this loss of ViewState a KnownIssue?, is there a workaround?
Thanks for assistance.

Re: Issue: FCKeditor is losing value when used in asp wizard con