|
|||||||||
Using FileUploader in Full ModeThis article show how to use Mediachase FileUploader in full mode Full mode is using temporary files on server disk to optimize requests. You can't use standart controls on the same page in this mode. [View Sample C#] [View Sample VB.NET]In order to switch from Medium to Full you need to add one line into Mediachase.FileUploader.McHttpModule section: <httpFile TempStoragePath="You Path" />
If Mediachase.FileUploader.McHttpModule already contains httpFile tag, just add
TempStoragePath attribute.
Value of TempStoragePath attribute can either be full path to a folder or relative path. The FileUploader.NET supports the environment variables. Examples:
You have to set write rights for specified path for ASP.NET account.
|
|||||||||