Awesome to hear that it worked in your console App! Now moving to a C#.NET Web Application with file upload (multiple files) — yep, you're spot on! You'll need to process each uploaded file from the FileUpload control (or IFormFile if you're using ASP.NET Core MVC).
Make sure your form has enctype="multipart/form-data".
Consider file type validation (.pdf, .jpg, .png, etc.) before processing.
You might want to show the results on the same page or store them in a temporary collection.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.
Thank you!