Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created June 27, 2012 21:35
Show Gist options
  • Save Boztown/3007017 to your computer and use it in GitHub Desktop.
Save Boztown/3007017 to your computer and use it in GitHub Desktop.
Razor Examples
// strongly-typed textbox helper (not the @ because "class" is a keyword... sneaky)
@Html.TextBoxFor(model => model.Title, new { @class = "span4" })
// strongly typed validation message
@Html.ValidationMessageFor(model => model.Title)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment