Advertisement
Guest User

Untitled

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