Now try:
.Parameters("@PortalSettingsDealerImageURL").Value = Server.HtmlDecode("Hello World" & EditorImageOwner.Text))
If you get "Hello World" only, for some reasons, the Text property is empty when extracting the content from editor.
When debugging, you need to focus on this part.
Maybe you forget IsPostBack event, and set the editor value to empty automatically.
Public Sub Page_Load(sender As object, e As System.EventArgs)
If Page.IsPostBack Then
Literal1.Text = "<h3>The HTML you typed is...</h3><br>"
Literal1.Text += Server.HtmlEncode(Editor1.Text)
Else
Editor1.Text = "Type Here"
End If
'This will cause problem
Editor1.Text = "Some code"
End Sub
asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
asp wysiwyg html editor: http://cutesoft.net/ASP
asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
Live Support: http://cutesoft.net/live-support/default.aspx