Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @foreach (var book in Model.Books)
  2. {
  3. <p>
  4. Title: @book.Title. Author: @book.Author. ID: @book.ID
  5. <button class="btn-primary" asp-controller="Books" asp-action="CheckOut" asp-route-id=@book.ID> Check-out book </button>
  6. <button type="button" onclick=""> Reserve book </button>
  7. </p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement