Last post Jul 13, 2012 10:36 AM by london24
Member
5 Points
113 Posts
Jul 13, 2012 10:36 AM|london24|LINK
Hi
In case anyone else needs this...
The new upload image into the htmleditor loses the image with a postback and just displays the html i.e. <img src=.... etc
so do this:
if (IsPostBack) {
txtBookingConfirmation.Text = Server.HtmlDecode(txtBookingConfirmation.Text);
Member
5 Points
113 Posts
HTMLEditorExtender encodes img tag on postback ...
Jul 13, 2012 10:36 AM|london24|LINK
Hi
In case anyone else needs this...
The new upload image into the htmleditor loses the image with a postback and just displays the html i.e. <img src=.... etc
so do this:
if (IsPostBack) {
txtBookingConfirmation.Text = Server.HtmlDecode(txtBookingConfirmation.Text);