When I populate the RadEditor prior to the page loading, it is automatically inserting the current page Url in the src tag.
For example, if I populate the .Html propery of the editor with the following code.
<html>
<body>
<img src="##CustomURL##">
<body>
<html>
##CustomURL## is a token that our code behind replaces when it renders elsewhere.
The editor then turns this code in to:
<html>
<body>
<img src="http://localhost/myapp/editor.aspx##CustomURL##">
<body>
<html>
How can I stop this?
For example, if I populate the .Html propery of the editor with the following code.
<html>
<body>
<img src="##CustomURL##">
<body>
<html>
##CustomURL## is a token that our code behind replaces when it renders elsewhere.
The editor then turns this code in to:
<html>
<body>
<img src="http://localhost/myapp/editor.aspx##CustomURL##">
<body>
<html>
How can I stop this?