Created
June 27, 2012 21:35
-
-
Save Boztown/3007017 to your computer and use it in GitHub Desktop.
Razor Examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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