Hi,
To set the fckEditor userdata folder at runtime, in asp.net we have to set a session variable in page_init method, as below
Session("FCKeditor:UserFilesPath") = "~/MyOwnDataDir"
See Integration with ASP.Net , section Changing the UserFilesPath by code
But not sure how to accomplish this in VWG.
I tried to setup a VWG session variable before InitComponents in user control's constructor, but it didn't worked, fckEditor's browser still used the UserData folder setup in Web.config.
How can I accomplish this in VWG?
Thank you