Skip to content

Instantly share code, notes, and snippets.

@jasonmccay
Created October 9, 2011 05:29
Show Gist options
  • Save jasonmccay/1273351 to your computer and use it in GitHub Desktop.
Save jasonmccay/1273351 to your computer and use it in GitHub Desktop.
Creating a view for the Developer Listing.
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<mongohq_csharp.Models.DeveloperModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
Index
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>Developers</h2>
<ul>
<% foreach(var developer in Model.developers) { %>
<li><%= developer.name %> works for <%= developer.company %> and is proficient in <%= developer.languages %></li>
<% } %>
</ul>
</asp:Content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment