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. To read the configuration setting we will use .AddOptions() method.
In this article, I will explain how we can read the configuration setting from the appsettings.json file in .NET Core. To read the configuration setting we will use .AddOptions() method.
Sometimes we need our own custom configuration setup to force the redirect request from HTTP to HTTPS. normally we need when someone tries to access our URL from a non-secure platform (HTTP) and we don’t want to access them and redirect on the secure layer (HTTPS).
Here, we will learn about using a Quartz scheduler in ASP.NET Core. The scheduler is very useful for running tasks in the background. For example, we have to write in a file every 5 min, so the simplest method will be to create a schedule to write in a file. so that it can be called at every 5 min.
Today, we will learn about how to create server side DataTable with it’s full functionality like searching, sorting and pagination. DataTable is most commonly used for grid and it’s power retains as it provides the customized functionality also.
In order to improve request load time, Bundling and minification techniques were introduced in MVC 4. In this article, we will learn how to bundle and minify files with Visual Studio
In this article, we will learn how to generate a QR code in C#. QR code (stands for Quick Response code) is the trademark for a type of matrix barcode.
In this article, we will learn how to generate a barcode In C#. A Barcode is a method of representing data in a visual, machine-readable form.
In this article, we will learn how to calculate code execution time in C#. The StopWatch class in System.Diagnostics is used to measure the elapsed time accurately.
In this article, we will learn how to combine two lists without duplicate values in C#. The Union() method is used to combine two lists with distinct values.
In this article, we will learn how to format string as the phone number in C#.