Dependency injection in ASP.NET Core
Dependency injection (DI) is heavily used in ASP.NET Core and this post tries to explain how this technique is used. Dependency injection is a design… Read More »Dependency injection in ASP.NET Core
Dependency injection (DI) is heavily used in ASP.NET Core and this post tries to explain how this technique is used. Dependency injection is a design… Read More »Dependency injection in ASP.NET Core
This post describes how you can create a responsive website in ASP.NET Core. A responsive website adapts to different screen sizes, this makes your website… Read More »Responsive website with ASP.NET Core
This post describes a way to minify html in ASP.NET Core that I have used in a project. The main reason to minify html is… Read More »Minify html in ASP.NET Core
This post describes how you can minify and cache static files in ASP.NET Core. You may want to do this in order to make your… Read More »Minify and cache static files in ASP.NET Core
In this post I describe how you can redirect requests to https and www or non-www with a rewrite rule in ASP.NET Core. The reasons… Read More »Redirect to https and www or non-www in ASP.NET Core
This post describes how you can add Facebook login to your website in ASP.NET Core. You need to create an Facebook App and add Facebook… Read More »Login with Facebook in ASP.NET Core