Hi,
When
AutoUseSystemTempFolder =”False” and we are using a customized folder to save temporary files and I am trying to process one file at a time using the bellow function uploader.GetUploadedFile(guid) returning “ nothing”
Private Sub ServerAjaxProcessFile(ByVal guid As Guid)
Dim uploader As New CuteWebUI.MvcUploader(Context)
Dim file As CuteWebUI.MvcUploadFile = uploader.GetUploadedFile(guid)
Response.Write("Server side message : File uploaded : " +file.FileName)
End Sub
Any solution for this so that I can save the temp files in a spcific temp folder and can process one file at a time.
It is very urgent because client is waiting for this