Right out of the box I am putting a RadEditor on a page. OnLoad is populating RadEditor.Content - like the documentation states - and this works. But if I change the content, my changes are instantly forgotten.
I added a button to the page with an event to a function. In the function I attempted to write the changes back to SQL and nothing happened. After an hour or so of assuming that my DB code was bad, I threw a Response.Write(editor.Content); in my code and the content after the button click is the same as the initial content on page load; any changes that I make do not appear.
I do not see any reason why this should not be working. Is there some sort of editor.CommitChanges() that I am not seeing in the documentation?
