Advertisement
Guest User

Untitled

a guest
Feb 18th, 2015
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. @{
  2. ViewBag.Title = "Index";
  3. }
  4.  
  5. <h2>Index</h2>
  6.  
  7. @foreach (var entry in ViewBag.allRecords)
  8. {
  9. <section class="contact">
  10. <header>
  11. <h3>@entry.Comment</h3>
  12. </header>
  13. <p>
  14. Posted by @entry.Name
  15. </p>
  16. </section>
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement