Archives
-
Implementing Sorting in Generic List (List<T>)
How to sort a generic list? Well, generic list provides a sort method itself in the form List<T>.Sort(). But wait a sec. This method requires you to implement sorting mechanism in your type. … more
-
Implementing Delete Confirmation Dialog in ListView Control (ASP.Net)
Listview control is one of my favorite controls added in asp.net version 3.5. It provides easy way to implement view (list), update, insert and delete functionality. Using SQL Data Source or LINQ … more