Using Multiple Authentication Schemes In ASP.NET Core 3.1?
NET Core – Using Multiple Authentication Schemes. One endpoint, authorize using Identity Server or using a custom authentication handler.
NET Core – Using Multiple Authentication Schemes. One endpoint, authorize using Identity Server or using a custom authentication handler.
In this article, we will learn how we can update sessions or perform similar operations on each request in C# or any language. we just need to create middleware that executes each request. Here I’m taking an example of MVC.
In this article, we will learn how to convert HTML documents to PDF,Word and Excel documents.
In a Previous post Display Records From Database Using Handlebars in ASP.NET MVC, I discussed how to fetch records from a database and display them using Handlebars. It provides an easy way to convert retrieved data from an Ajax call into HTML without writing lots of custom JS code. It provides a way to implement…
In this article, we will learn about how we can perform crud operations using Partial View is like a web user control in ASP .NET applications. Partial Views and User Controls serve the same purpose.
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 the difference between == operator and .Equals() method In C#.
In general, both == operator and .Equals() method in C# are used to compare objects to check equality but here are some of the differences: