Advertisement
otkalce

MVC View Basics II

Apr 11th, 2023
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | Source Code | 0 0
  1. <table class="table table-striped">
  2.     <thead>
  3.         <tr class="thead-dark">
  4.             <th>First Name</th>
  5.             <th>Last Name</th>
  6.             <th>E-mail</th>
  7.         </tr>
  8.     </thead>
  9.     <tbody>
  10.     @foreach (var person in persons)
  11.     {
  12.         <tr>
  13.             <td>@person.FirstName</td>
  14.             <td>@person.LastName</td>
  15.             <td>@person.Email</td>
  16.         </tr>
  17.     }
  18.     </tbody>
  19. </table>
  20. <a href="/Person/Add/" class="btn btn-primary">Add person</a>
Tags: razor-basics
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement