I am using
<RadzenUpload Url="upload/single" Icon="upload" ChooseText="" Progress=@(args => OnProgress(args, "PartsBreakdownDoc")) Style="width: 10%" InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "select file" }})"/>
void OnProgress(UploadProgressArgs args, string name)
{
if (args.Progress == 100)
{
if (name == "PartsBreakdownDoc")
{
am.PartsBreakdownDoc = args.Files.ElementAt(0).Name;
}
}
}
I am able to get the file name and progress is 100 but where does the file go? I am unable to find it on my webserver? Do I need to do anything else to get the file to upload? How would I specify the upload folder?
Thank you,
Peter