Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created January 6, 2012 17:09
Show Gist options
  • Save robertgreiner/1571479 to your computer and use it in GitHub Desktop.
Save robertgreiner/1571479 to your computer and use it in GitHub Desktop.
public class HomeController : Controller
{
private Person p = new Person();
public ActionResult Index()
{
p.FirstName = "Robert";
p.LastName = "Greiner";
p.TwitterHandle = "@robert_greiner";
return View(p);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment