Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created January 6, 2012 17:10
Show Gist options
  • Save robertgreiner/1571481 to your computer and use it in GitHub Desktop.
Save robertgreiner/1571481 to your computer and use it in GitHub Desktop.
@model MVC3Layouts.Models.Person
@{
ViewBag.Title = "Index";
Layout = "~/Views/Home/_Layout.cshtml";
}
<h2>Index</h2>
<h3>Person Information</h3>
@Model.FirstName<br />
@Model.LastName<br />
@Model.TwitterHandle<br />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment