Hi all. Is there a way with the Editor control to provide functionality to end-users such that they may embed application-relative URLs within the HTML? For example, I'd like end-users to be able to have tags like the following:
<a href="~/SomePage.aspx">Some Page</a>
<img src="~/images/someImage.gif" />
To have such references render within the WYSIWYG editing mode would be ideal - is there a way to support that? I am thinking that a custom filter could address the issue for Preview mode, but is there a way to handle this in the editing mode?
<a href="~/SomePage.aspx">Some Page</a>
<img src="~/images/someImage.gif" />
To have such references render within the WYSIWYG editing mode would be ideal - is there a way to support that? I am thinking that a custom filter could address the issue for Preview mode, but is there a way to handle this in the editing mode?