I've read a lot of posts regarding hyperlinks, but I still can't sort the issue out.
Here's one example of what's happening to me:
1. My instance of the editor is set up as follows:
<CE:Editor id="csBodyRightText" EditorWysiwygModeCss="../css/example.css" RemoveServerNamesFromUrl="true" UseRelativeLinks="true" runat="server" text='<%# DataSet1.FieldValue("body_RightText", Container) %>' TextMode="MultiLine" />
I think this should make the links relative....
2. I use the link creator kazoo to make a relative link. When I look at the HTML window it looks like this (which is good):
<a href="gallery.aspx?page=this&id=that" target="_self">Construction Technology</a>
3. Then I switch back to the normal view, and again back to HTML view and now my link looks like this:
<a href="/CARMA/CuteSoft_Client/CuteEditor/gallery.aspx?page=this&id=that" target="_self">Construction Technology</a>
What am I missing?
DOug