I understand that in Razor, @Html does a bunch of neat things, like generate HTML for links, inputs, etc.
But I don't get the DisplayFor function...
Why would I write:
@Html.DisplayFor(model => model.Title)
when I could just write:
@Model.Title
|
I understand that in Razor, @Html does a bunch of neat things, like generate HTML for links, inputs, etc. But I don't get the DisplayFor function... Why would I write:
when I could just write:
| |||
|
feedback
|
|
If it can't find any, I suppose it invokes If you don't know about display templates, they're partial views that can be put in a Example: If you create a view named
Then | |||||||
feedback
|
|
I think the main benefit would be when you define your own Display Templates, or use Data annotations. So for example if your title was a date you could define
and then on every page it would display the value in a consistant manner. Otherwise you may have to customise the display on multiple pages. So it does not help much for plain strings, but it does help for currencies, dates, emails, urls etc. | ||||
|
feedback
|
|
Similar to Take a look at this blog on MVC2 templates. It's still very applicable to MVC3: http://www.dalsoft.co.uk/blog/index.php/2010/04/26/mvc-2-templates/ It's also useful if your Model has a Data annotation. For instance, if the property on the model is decorated with the | |||
|
feedback
|