Custom pagingShalini Juneja15yAsked Aug 5, 2011, 5:31 AM2.8khi,How we can do GridView Custom Paging in ASP.NET 4.0 with SQL Server Stored Procedure?
BNBanketeshvar Narayan15y agoPosted Aug 12, 2011, 1:17 PMstored procedure for custom paging:you have to take following variable.@pageno int, @pagesize int, @totalrecords int output...select statement....you have to take @totalrecords for calculating number of pages.0
Banketeshvar NarayanPosted Aug 12, 2011, 1:17 PM
you have to take following variable.
@pageno int, @pagesize int, @totalrecords int output
...select statement....
you have to take @totalrecords for calculating number of pages.