Hi,
please test this :
and you can try to add such setting into web.config appSettings:
that would affact all uploader controls , and override uploader's TempDirectory setting.
---
but , please remember that, the TempDirectory is for the Uploader . It only store temp files.
That means , the uploader need a temp folder. And you need copy the temp file to another place.
After you catch the FileUploaded event , you need to use args.CopyTo(newfoldername) to store the file !!
---
So I suggest you do these steps:
1. use web.config, add the CuteWebUI.AjaxUploader.TempDirectory , and set to a temp shared folder of a dedicated server.
2. catch the FileUploaded event, and copy the file to the image/video folder.
Regards , Terry .