Hi there, I'm having trouble using the FCKeditor in a detailsview.
I'm using it to replace a textBox in the InsertItem template.
The problem is I can't seem to databind it.
When I click on Edit Databindings it only gives me one bindable property, that of 'visible' which obviously just gives the value 'true'
How do I bind it to the text that I'm entering into the editor?
Help would be much appreciated as this is annoying me now and I'm sure there must be a simple solution.
Thanks in advance
I'm using it to replace a textBox in the InsertItem template.
The problem is I can't seem to databind it.
When I click on Edit Databindings it only gives me one bindable property, that of 'visible' which obviously just gives the value 'true'
How do I bind it to the text that I'm entering into the editor?
Help would be much appreciated as this is annoying me now and I'm sure there must be a simple solution.
Thanks in advance

***Solution***
I added the 'value' property into the source code.
So I changed:
<InsertItemTemplate>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" BasePath="~/fckeditor/">
</FCKeditorV2:FCKeditor>
</InsertItemTemplate>
to:
<InsertItemTemplate>
<FCKeditorV2:FCKeditor ID="FCKeditor1" runat="server" Value='<%# Bind("dataBaseFieldName") %>' BasePath="~/fckeditor/">
</FCKeditorV2:FCKeditor>
</InsertItemTemplate>
Problem solved!