Guest User

Untitled

a guest
Jan 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class MemberController : Controller
  2. {
  3. public ActionResult Index()
  4. {
  5. var users = Membership.GetAllUsers();
  6. return View(users);
  7. }
  8.  
  9. }
  10.  
  11. <ul>
  12. @foreach (var item in Model)
  13. {
  14. <li>@Html.DisplayFor(model => model[item.ToString()].UserName)</li>
  15. }
  16. </ul>
Add Comment
Please, Sign In to add comment