Guest User

Untitled

a guest
Jan 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @IList<Person> model = (IList<Person>)Model;
  2.  
  3. <!DOCTYPE HTML />
  4. <html>
  5. <head></head>
  6. <body>
  7. <ul>
  8. @foreach (Person p in Model)
  9. {
  10. <li>@p.name</li>
  11. }
  12. </ul>
  13. </body>
  14. </html>
Add Comment
Please, Sign In to add comment