Hi all,
I am currently looking for a way to search though a MembershipUserCollection.
At the moment the user will pick the role they wish to see. this could return 100's if not 1000's of records which are paged in a repeater. on the same screen the user can type in part of the user name they wish to find and it should filter the data. I rather have the filtering done as part of a ajax call using jquery.
Filtering works but only on the page that is selected not on the other pages.
example below is a sample of how records are been returned.
Dim UserRoles As String() = Roles.GetUsersInRole(ddlusertype.SelectedItem.Text)
Dim mem As MembershipUser = Nothing
Dim dt As New MembershipUserCollection
For Each Str As String In UserRoles
mem = Membership.GetUser(Str)
dt.Add(mem)
next
and I am using the jquery plug-in uitablefilter to do the searching