I load some document into RadEditor on page_load.
In editor's Design tab, Ctrl+Z will make content undo to what I load on page_load.
But in HTML tab, if I press Ctrl+Z many times, content will undo to empty.
Is there any property to keep HTML content?
| protected void Page_Load(object sender, EventArgs e) |
| { |
| if (!IsPostBack) |
| { |
| LoadTemplate(); |
| } |
| } |
| protected void LoadTemplate() |
| { |
| int i = 0; |
| DataSet ds = dsTestDB.GetTemplate(Request.QueryString["templateId"], false, out i); |
| if (i > 0) |
| { |
| RadEditor1.Content = StringUtility.GetString(ds.Tables[0].Rows[0]["Template_Content"] as byte[]); |
| } |
| } |
In editor's Design tab, Ctrl+Z will make content undo to what I load on page_load.
But in HTML tab, if I press Ctrl+Z many times, content will undo to empty.
Is there any property to keep HTML content?
