In ASP pages, I use textarea to display text from database.
I use datareader and assign the value to a variable: description
then show it in the textarea: <textarea name=background ><%=description%></textarea>
I found that if I use cuteeditor instead of textarea, I cannot retrieve the variable by this method
<CE:Editor ID="Editor_Background" runat="server" AutoConfigure="None" Text='<%=description%>'></CE:Editor>
there is nothing on the editor
But when I change the Text ="123", it shows '132'
how to show on editor from variable?