August 2010 - Posts

0
Comments

Convert a string to Title Case in C#... by Suthish Nair

There is no direct method like ToUpper(), ToLower() for Title Case. But using CultureInfo and TextInfo classes we can do Title case of a string. Below method will convert the first character of each word to uppercase. The references used: using System...
0
Comments

GridView Sorting, Paging without using Session, ViewState or Cache etc... by Suthish Nair

I was wondering why most of the web sites having articles/blogs about GridView Sorting, Paging uses ViewState/Sessions objects etc for storing datatable records for further use. Another way of using was getting data from database on every request. But...
More Posts