Advertisement
Guest User

Untitled

a guest
Sep 15th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public ActionResult Listings(string id)
  2. {
  3. // my code to build list
  4. return View(//My List);
  5. }
  6.  
  7. @foreach(WebApp.Models.PersonModel item in Model)
  8. {
  9. <tr>
  10. <td>@item .ContactPerson</td>
  11. </tr>
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement