I have an textbox that is populated by my html editor the display is a lable so that the users can only do the updates through the html editor(I don't want them to mess up the code.). The code also has a hidden field that is responsible for binding of the data. Updates seem to be ignoring the information saved in the bound control.
There are the fields in the edit template in the custom control.
<asp:HiddenField ID="HiddenField1" runat="server" Value='<%# Bind("Bio") %>' />
<
br /><asp:Label ID="lblBio" runat="server" Width="515px" Text='<%# TruncateText(Eval("Bio")) %>' />
<
br />