Can and How do you use data binding with a WebTextEditor?
Hi Naish,
The WebTextEditor has enabled Bindable attribute for its Value property. That means that it can be used by exactly same way as Text property of asp:TextBox. For example, if you have
<asp:FormView ID="FormView1" ...> <EditItemTemplate> ... <asp:TextBox ID="NameTextBox" runat="server" Text='<%# Bind("Name") %>' /> </EditItemTemplate></asp:FormView>
Then you may replace TextBox by WebTextEditor
<asp:FormView ID="FormView1" ...> <EditItemTemplate> ... <ig:WebTextEditor ID="WebTextEditor1" runat="server" Value='<%# Bind("Name") %>'></ig:WebTextEditor> </EditItemTemplate></asp:FormView>