txtContent
txtContent.BaseServerPath = "f:\inetpub\wwwroot\mypersonaldomain";
web.config
UserFilesPathFileWorkerBase.cs
private const string DEFAULT_USER_FILES_SERVER_PATH = "";
private string sUserFilesServerPath;
protected string UserFilesServerPath
{
get
{
if (sUserFilesServerPath == null)
{
sUserFilesServerPath = (string)Session["FCKeditor:BaseServerPath"];
if (sUserFilesServerPath == null || sUserFilesServerPath.Length == 0)
sUserFilesServerPath = DEFAULT_USER_FILES_SERVER_PATH;
}
return sUserFilesServerPath;
}
}
UserFilesDirectory
protected string UserFilesDirectory
{
get
{
if (sUserFilesDirectory == null)
{
// If the Base Server Path hasn't been set,
// Then just grab a Server.MapPath()
if (sUserFilesServerPath == null || sUserFilesServerPath.Length == 0)
{
// Get the local (server) directory path translation.
sUserFilesDirectory = Server.MapPath(this.UserFilesPath);
}
else
{
// Otherwise, add the Base Server Path to our UserFilesPath
sUserFilesDirectory = sUserFilesServerPath + sUserFilesPath;
}
}
return sUserFilesDirectory;
}
}
FCKeditor.cs
[DefaultValue("")]
public string BaseServerPath
{
get
{
object o = ViewState["BaseServerPath"];
return (o == null ? "" : (string)o);
}
set { ViewState["BaseServerPath"] = value; }
}
<img src="http://www.myotherdomain.com/images/myImage.jpg" />but<img src="/images/myImage.jpg" />

Re: Modifying .NET connector for multiple domains?
Anyone?
Thanks -
- Chazzz