DisplayExtensions.DisplayFor Method
Include Protected Members
Include Inherited Members
Returns HTML markup for each property in the object that is represented by the Expression expression.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>) | Returns HTML markup for each property in the object that is represented by the Expression expression. | |
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, Object) | Returns a string that contains each property value in the object that is represented by the specified expression, using additional view data. | |
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String) | Returns a string that contains each property value in the object that is represented by the Expression, using the specified template. | |
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String, Object) | Returns a string that contains each property value in the object that is represented by the specified expression, using the specified template and additional view data. | |
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String, String) | Returns HTML markup for each property in the object that is represented by the Expression, using the specified template and an HTML field ID. | |
DisplayFor<TModel, TValue>(HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String, String, Object) | Returns HTML markup for each property in the object that is represented by the specified expression, using the template, an HTML field ID, and additional view data. |
Top