Guest User

Untitled

a guest
Apr 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Transportation.ViewModels.TransportationViewModel>" %>
  2. <%@ Import Namespace="Transportation.Models" %>
  3. <asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
  4. ListVehicles
  5. </asp:Content>
  6.  
  7. <asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
  8.  
  9. <h2>List Vehicles</h2>
  10. <h4>Cars:</h4>
  11. <% foreach(Car c in Model.Cars)
  12. {%>
  13. Make: <b><%=c.Make %></b>
  14. Model: <b><%=c.Model %></b>
  15. <% } %>
  16. <h4>Train:</h4>
  17. <b><%=Model.Train.Line %></b>
  18. <b><%=Model.Train.Schedule %></b>
  19.  
  20. </asp:Content>
Add Comment
Please, Sign In to add comment