I have page which uses a master page and skin file. In in the C#
code behind it, there is an event handler inside which it reads the
content of the editor for saving to a database. The problem I'm having
is that the first time the Update button is clicked, there event
handler is not called and the content of the editor is lost. If the
Update Button is called a second time, only then is the evenhandler
called. I'm just wonder if there is some aspect of the Cute Editor
which may be causing this as this does not happen with other pages in
the project.
public void btnUpdate_Click(object sender, System.EventArgs e)
{
string myContent = htmlEditor.Text;
}