3 Things Every ASP.Net Developers Should Know

There are several options to develop web applications in Microsoft ecosystem such as ASP.Net Web Forms, ASP.Net MVC, Single Page Applications. ASP.Net Web Forms is supported from the initial days of ASP.Net and even today enterprises build many of their web applications using Web Forms. The advantage of web forms is that enables you to build web applications rapidly. But …

Sorting a Gridview dynamically on multiple columns in different order in ASP.Net

Most of the ASP.Net developers would have used Gridview control in their applications. This article explains about sorting the gridview dynamically on multiple columns in different order in web applications. I am using Product table of AdventureWorks database for this sorting. Our objective is to achieve the sorting order ListPrice desc, ReOrderPoint asc, Name desc on a gridview which fetches …