Complete source code developed as part of article - File Upload in ASP.NET Core 6 – Detailed Guide
In this article, we will learn about how to perform file upload in ASP.NET Core 6. The file for upload can be of any format like image (jpg, BMP, gif, etc), text file, XML file, CSV file, PDF file, etc. We will learn how to design a web page that allows users to select a file for upload and then by the click of a button submit the same web page to upload a file on the webserver.
The complete article is available at https://procodeguide.com/programming/file-upload-in-aspnet-core/
Upload Large File in ASP.NET Core
Configuration in ASP.NET Core 6
Swagger for .NET 6 in ASP.NET Core Web API
Swagger UI ASP.NET Core Web API
Implement Authorization for Swagger in ASP.NET Core 6
Implement Authentication in ASP.NET Core Web API
- https://github.com/jignesht24/Aspnetcore/tree/master/JWTAuthentication (GOOD)
- https://jasonwatmore.com/post/2021/12/14/net-6-jwt-authentication-tutorial-with-example-api (NOT USE)
- https://www.c-sharpcorner.com/article/how-to-implement-jwt-authentication-in-web-api-using-net-6-0-asp-net-core/ (NOT USE)
- https://www.c-sharpcorner.com/article/jwt-authentication-and-authorization-in-net-6-0-with-identity-framework/ (NOT USE)
Chunk Files
Web API 2