The Grid itself should automatically pass those up during the Request I believe (ie any PostBacks or AJAX calls that are made through the Grid) and you should be able to pull them out of the code-behind using the code I provided earlier :
'Get the number of elements to skip'Dim skip =TryCast(Request("skip"),Integer)Dim take =TryCast(Request("take"),Integer)
All-Star
114593 Points
18503 Posts
MVP
Re: capacity of a session variable
May 01, 2014 08:15 AM|Rion Williams|LINK
The Grid itself should automatically pass those up during the Request I believe (ie any PostBacks or AJAX calls that are made through the Grid) and you should be able to pull them out of the code-behind using the code I provided earlier :