Here's the snippet of my view that is giving me error
@model MembershipUserCollection
@{
ViewBag.Title = "Index";
}
@{var usersGrid = new WebGrid(source: Model, rowsPerPage: 40);}
apparently the WebGrid constructor does not accept a MembershipUserCollection as a parameter. How can I get around this?
please help. I need to add pagination to the list of Users.