Dear friends,
I use FCK in ASP mode, and I need to change the browser and upload directory for each user log in my website!
So I would for example, the user named "MARCO" browse the directory /public/data/MARCO, or the user named SILVIA browse the directory /public/data/SILVIA/
I tried to change connector.asp so:
and put in the page that call FCK
but don't work!
It's like the session don't exist! Why?
There are others metods to send value dynamically?
I use FCK in ASP mode, and I need to change the browser and upload directory for each user log in my website!
So I would for example, the user named "MARCO" browse the directory /public/data/MARCO, or the user named SILVIA browse the directory /public/data/SILVIA/
I tried to change connector.asp so:
Dim ConfigUserFilesPath
ConfigUserFilesPath = "/public/data/"&Response.Write(Session("MM_Username"))and put in the page that call FCK
Session("MM_Username") = (accountMem.Fields.Item("M_NAME").Value)but don't work!
It's like the session don't exist! Why?
There are others metods to send value dynamically?

Re: Change UserFilePath dynamic with ASP
You must do it this way:
"/public/data/" & Session("MM_Username")