i'm using CE6.0
i have a domain, i'm using CE for editor a page on other page
on code i have set
--------------------------------------------------------------------------------------
EDITOR1.UseRelativeLinks = false;
EDITOR1.RemoveServerNamesFromUrl = false;
EDITOR1.ResolveClientUrl('http://www.testing.com/' );
EDITOR1.SetSecurityGalleryPath(Folder + "images/");
EDITOR1.SetSecurityMediaGalleryPath( Folder + "images/");
EDITOR1.SetSecurityFlashGalleryPath( Folder + "images/");
EDITOR1.SetSecurityFilesGalleryPath( Folder);
EDITOR1.SetSecurityImageGalleryPath( Folder + "images/");
EDITOR1.SetSecurityTemplateGalleryPath(Folder + "../Templates/"
);
----------------------------------------------------------------------------------------
But on Editor i inserted a picture i receive a code
<img height="100" alt="" src="/client/nddieu/images/2103svc-2a.jpg" width="266" border="0" />
folder /client/nddieu/ is a map on my CMS
i want it show like
<img height="100" alt="" src="http://www.testing.com/images/2103svc-2a.jpg" width="266" border="0" />
or
<img height="100" alt="" src="images/2103svc-2a.jpg" width="266" border="0" />
Please help me