.NET Core

Reading Values From The Appsettings In .NET Core

In this article, I will explain how we can read the configuration setting from the appsettings.json file in .NET Core.…

4 years ago

Redirect HTTP To HTTPS

Sometimes we need our own custom configuration setup to force the redirect request from HTTP to HTTPS. normally we need…

4 years ago

Using Quartz Scheduler In ASP.NET Core

Here, we will learn about using a Quartz scheduler in ASP.NET Core. The scheduler is very useful for running tasks…

4 years ago

Server Side Pagination Using DataTable In .NET Core

Today, we will learn about how to create server side DataTable with it's full functionality like searching, sorting and pagination.…

4 years ago

How To Bundle And Minify Files With Visual Studio

In order to improve request load time, Bundling and minification techniques were introduced in MVC 4. In this article, we…

5 years ago

How To Generate QR Code In C#

In this article, we will learn how to generate a QR code in C#. QR code (stands for Quick Response…

5 years ago

How To Generate Barcode In C#

In this article, we will learn how to generate a barcode In C#. A BarcodeĀ is a method of representing data…

5 years ago

How To Calculate Code Execution Time In C#

In this article, we will learn how to calculate code execution time in C#. The StopWatch class in System.Diagnostics is…

5 years ago

How To Combine Two Lists Without Duplicate Values In C#

In this article, we will learn how to combine two lists without duplicate values in C#. The Union() method is…

5 years ago

How To Format String As Phone Number In C#

In this article, we will learn how to format string as the phone number in C#.

5 years ago