I am using FCK in an ASP.Net. I want to save upload images (using the BROWSE SERVER option) in differtent directories (which one depends on the person that logged in). So I cannot set just the UserFilesPath in the web config (I did that and that works fine, but I want to be able to use a subdirectory in there).
How can I manage to do that? Is there a propertie in the ASP.Net control or maybe do I have to change it in the .js file.
Hope someone can help me.
Michiel
How can I manage to do that? Is there a propertie in the ASP.Net control or maybe do I have to change it in the .js file.
Hope someone can help me.
Michiel

RE: Set image dir. while running code in ASP.Net
RE: Set image dir. while running code in ASP.Net
RE: Set image dir. while running code in ASP.Net
http://sourceforge.net/tracker/index.ph ... tid=543655
Re: Set image dir. while running code in ASP.Net
System.Configuration.ConfigurationManager.AppSettings["FCKeditor:UserFilesPath"] = "~/SomeUploadPath";
Obviously you can adjust the string you set to contain any dynamic information such as the logged on user's ID. This works fine here. The above line is only for ASP.NET 2.0 however. If you're still using ASP.NET 1.1, try:
System.Configuration.ConfigurationSettings.AppSettings["FCKeditor:UserFilesPath"] = "~/SomeUploadPath";
Nice control by the way!