Help me .NET developers, you're my only hope.
So I have a variable number of file uploads for a razor page to an IList<IFormFile> in a .NET Core 2.0 controller. Could be 1, could be 100. These can be large files, some over a gigabyte.
Rather than the user staring at a seemingly unresponsive page while the files upload, I'd like to give them a progress bar for each upload as it finishes.
This has turned out to be a much more complicated task than I anticipated.
Can someone point me in the right direction here? I can post code snippets if required.
I've looked at the official docs for uploads but they don't mention user feedback at all and other samples I've found online have been outdated.