This question is locked. New answers and comments are not allowed.
I have the following code to try to use RadUpload in Code,
I did not find the property of the RadUpload to allow me to add the file name list to be uploaded.
And is this the right way to use RadUpload in code without user interface?
Any help is appreciate.
private RadUpload _attUpLoad = new RadUpload();
....
_attUpLoad.UploadServiceUrl = WcfServiceHelper.ResolveUri("ExternalFileUpload.ashx").ToString();
_attUpLoad.FileUploaded += AttUpLoad_FileUploaded;
_attUpLoad.IsAutomaticUpload = true;
_attUpLoad.StartUpload();
And is this the right way to use RadUpload in code without user interface?
Any help is appreciate.