Hi,
I uploaded 3 files using this control. Within a button click, i want to see the number of files that i uploaded. It always shows 0.
Why am i not getting proper count here?
<telerik:RadAsyncUpload runat="server" ID="RadAsyncUpload1" AllowedFileExtensions =".pdf,.jpg,.jpeg,.txt"
MultipleFileSelection="Automatic" BorderStyle="Groove" >
<Localization Select=" Select a file " />
</telerik:RadAsyncUpload>
for (int fileNum = 0; fileNum <= RadAsyncUpload1.UploadedFiles.Count - 1; fileNum++)
{
}
Thanks