One of the most appealing features of blazor is the ability to encapsulate reusable user interface (UI) code into reusable UI components. .razor files can be used to specify custom user components in markup. This blog post will…
In this post, I will show you how to convert the XML node to DataTable using C#. XML is a very popular format for sharing data between two applications. Sometimes we need to parse the XML to our business objects (in our case d…
This is a new feature of c# 2.0. The null coalescing operator is a shortcut for checking if a value is null and, if so, returning the value of the second operand—kind of like an IIF. The syntax is as follows. After the end of t…
Google Charts is a powerful tool that can be used to create graphs and charts in ASP.NET applications. It can be used to generate graphs and charts for various types of data, such as: financial data, weather data, geographica…
In this post, I will show you how to display google chart in asp.net.Before going to implementation details, go through the following link Visualization: Pie Chart < %@ Page Language = " C# " AutoEventWireu…