DisplayExtensions.DisplayForModel Method
Returns HTML markup for each property in the model.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | DisplayForModel(HtmlHelper) | Returns HTML markup for each property in the model. |
![]() ![]() | DisplayForModel(HtmlHelper, Object) | Returns HTML markup for each property in the model, using additional view data. |
![]() ![]() | DisplayForModel(HtmlHelper, String) | Returns HTML markup for each property in the model using the specified template. |
![]() ![]() | DisplayForModel(HtmlHelper, String, Object) | Returns HTML markup for each property in the model, using the specified template and additional view data. |
![]() ![]() | DisplayForModel(HtmlHelper, String, String) | Returns HTML markup for each property in the model using the specified template and HTML field ID. |
![]() ![]() | DisplayForModel(HtmlHelper, String, String, Object) | Returns HTML markup for each property in the model, using the specified template, an HTML field ID, and additional view data. |
This method is typically used to display values from the object that is exposed by the Model property. For more information about the differences between this method and the other Display methods, see the DisplayExtensions class overview.
DisplayExtensions.DisplayForModel Method (HtmlHelper)
Returns HTML markup for each property in the model.
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
This method is typically used to display values from the object that is exposed by the Model property. For more information about the differences between this method and the other Display methods, see the DisplayExtensions class overview.
DisplayExtensions.DisplayForModel Method (HtmlHelper, Object)
Returns HTML markup for each property in the model, using additional view data.
public static MvcHtmlString DisplayForModel( this HtmlHelper html, object additionalViewData )
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- additionalViewData
-
Type:
System.Object
An anonymous object that can contain additional view data that will be merged into the ViewDataDictionary<TModel> instance that is created for the template.
DisplayExtensions.DisplayForModel Method (HtmlHelper, String)
Returns HTML markup for each property in the model using the specified template.
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- templateName
-
Type:
System.String
The name of the template that is used to render the object.
This method is typically used to display values from the object that is exposed by the Model property. For more information about the differences between this method and the other Display methods, see the DisplayExtensions class overview.
DisplayExtensions.DisplayForModel Method (HtmlHelper, String, Object)
Returns HTML markup for each property in the model, using the specified template and additional view data.
public static MvcHtmlString DisplayForModel( this HtmlHelper html, string templateName, object additionalViewData )
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- templateName
-
Type:
System.String
The name of the template that is used to render the object.
- additionalViewData
-
Type:
System.Object
An anonymous object that can contain additional view data that will be merged into the ViewDataDictionary<TModel> instance that is created for the template.
DisplayExtensions.DisplayForModel Method (HtmlHelper, String, String)
Returns HTML markup for each property in the model using the specified template and HTML field ID.
public static MvcHtmlString DisplayForModel( this HtmlHelper html, string templateName, string htmlFieldName )
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- templateName
-
Type:
System.String
The name of the template that is used to render the object.
- htmlFieldName
-
Type:
System.String
A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
This method is typically used to display values from the object that is exposed by the Model property. For more information about the differences between this method and the other Display methods, see the DisplayExtensions class overview.
The htmlFieldId parameter is used with HTML input when two properties in the model have the same name. In order to bind two properties that have the same name, the htmlFieldId parameter is used to specify the binding parameter name for each property.
DisplayExtensions.DisplayForModel Method (HtmlHelper, String, String, Object)
Returns HTML markup for each property in the model, using the specified template, an HTML field ID, and additional view data.
public static MvcHtmlString DisplayForModel( this HtmlHelper html, string templateName, string htmlFieldName, object additionalViewData )
Parameters
- html
-
Type:
System.Web.Mvc.HtmlHelper
The HTML helper instance that this method extends.
- templateName
-
Type:
System.String
The name of the template that is used to render the object.
- htmlFieldName
-
Type:
System.String
A string that is used to disambiguate the names of HTML input elements that are rendered for properties that have the same name.
- additionalViewData
-
Type:
System.Object
An anonymous object that can contain additional view data that will be merged into the ViewDataDictionary<TModel> instance that is created for the template.
The htmlFieldId parameter is used with HTML input when two properties in the model have the same name. In order to bind two properties that have the same name, the htmlFieldId parameter is used to specify the binding parameter name for each property.

