Guest User

Untitled

a guest
Mar 20th, 2019
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.13 KB | None | 0 0
  1. <table class="table">
  2.                 <tr>
  3.  
  4.                     <th>@Html.DisplayNameFor(model => model.Datum)</th>
  5.                     <th>@Html.DisplayNameFor(model => model.Klantnaam)</th>
  6.                     <th>@Html.DisplayNameFor(model => model.Voorletters)</th>
  7.                     <th>@Html.DisplayNameFor(model => model.Tussenvoegsels)</th>
  8.                     <th>@Html.DisplayNameFor(model => model.Achternaam)</th>
  9.                     <th>@Html.DisplayNameFor(model => model.Kenteken)</th>
  10.  
  11.                 </tr>
  12.  
  13.                 @foreach (var product in Model)
  14.                 {
  15.                     if (???)
  16.                     {
  17.  
  18.                         <tr>
  19.                
  20.                             <td>Datum</td>
  21.                             <td>Klantnaam</td>
  22.                             <td>Voorletters</td>
  23.                             <td>Tussenvoegsels</td>
  24.                             <td>Achternaam</td>
  25.                             <td>Kenteken</td>
  26.                        
  27.  
  28.                         </tr>
  29.                        
  30.                     }
  31.  
  32.  
  33.  
  34.                 }
  35.                
  36.             </table>
Add Comment
Please, Sign In to add comment