How to upload files in ASP.NET CORE

How to upload files in ASP NET CORE

In this tutorial, we will learn how to upload files in ASP NET Core. We will create a project that will upload files to a physical directory and also save the files to the database. Using ASP.NET Core, we will also explore how we can return the file using the following return type. FileResult FileContentResult … Read more

Minify CSHTML view in ASP.NET Core

Minify CSHTML view in ASP.NET Core using WebMarkupMin.AspNetCore3

This tutorial will learn how to minify CSHTML view in ASP.NET Core using WebMarkupMin.AspNetCore3. We will also include bundling and minification of static files like CSS and JS on our project. Using these techniques will allow us to improve our website performance in production. What is Bundling and Minification? Bundling and minification are techniques you … Read more