Hi Raha
When i googled the method definition Membership.FindUsersByName, it has more parameters which can be used to defined Paging
Here is the details : http://msdn.microsoft.com/en-us/library/fa5st8b2.aspx
public static MembershipUserCollection FindUsersByName(
string usernameToMatch,
int pageIndex,
int pageSize,
out int totalRecords
)
As you can see from the parameter definition, you can supply the (int) pageIndex, as well as the (int) pageSize.
so let's say you have a total of 100 records which qualified the users with firstname='John', then if you would like to retrieve the 1st page (with a total of 10 users in each page), you can set the (int) pageIndex to 1, and then the (int) pageSize to 10.
Subsequently if you want to retrieve the 2nd page, you can define the (int) pageIndex to 2 and (int) pageSize to 10.
You can utilize the totalRecords (out) parameter, to obtain how many total number of records , so that you can use this to display in your UI Grid.