O.B.,
Here's a couple of suggestions:
1. If you're pulling this from a database and are using a recordset, such as
recordsetobject
set recordsetobject = Server.CreateObject("ADODB.Recordset")
to get the data from your DB, you may want to just use
editor.Text = recordsetobject.Fields.Item("nameofhtmlfield").Value
If you're not using a recordset, try using:
editor.Text = <%=srcURL%>
I've had limited success with this, but in some cases it works. If you're using another method of extracting the data from your DB, please post the code for the extraction part of your ASP page here, and I will take a look at it.
Thanks,
Max.