Alphabetic Paging In GridView
How to Implement Alphabetic Paging in GridView?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mahesh JoshiPosted Mar 10, 2008, 7:28 AM
Use GridView RowCreated event to to identify row created type. If it is footer then add Link Buttons to table cells with text a-z alphabets with CommandName property set to "AlphaPaging". In the code behind GridView1_RowCreated event identify the alphabet clicked and fetch the rows from the table using SQL LIKE query and display it in GridView.