EditorExtensions.Editor Method (HtmlHelper, String, String, String)

Returns an HTML input element for each property in the object that is represented by the expression, using the specified template and HTML field name.

Namespace:  System.Web.Mvc.Html
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Editor ( _
    html As HtmlHelper, _
    expression As String, _
    templateName As String, _
    htmlFieldName As String _
) As MvcHtmlString
public static MvcHtmlString Editor(
    this HtmlHelper html,
    string expression,
    string templateName,
    string htmlFieldName
)
[ExtensionAttribute]
public:
static MvcHtmlString^ Editor(
    HtmlHelper^ html, 
    String^ expression, 
    String^ templateName, 
    String^ htmlFieldName
)

Parameters

  • expression
    Type: System.String
    An expression that identifies the object that contains the properties to display.
  • templateName
    Type: System.String
    The name of the template to use 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.

Return Value

Type: System.Web.Mvc.MvcHtmlString
An HTML input element for each property in the object that is represented by the expression.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HtmlHelper. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

The htmlFieldName parameter is provided for the case in which all the following are true:

  • A page contains multiple objects to be edited.

  • The action method model binds each object separately.

  • The objects have at least one property that has the same name.

If a template whose name matches the templateName parameter is found in the controller's EditorTemplates folder, that template is used to render the expression. If a template is not found in the controller's EditorTemplates folder, the Views\Shared\EditorTemplates folder is searched for a template that matches the name of the templateName parameter. If no template is found, the default template is used.

This method generates different HTML markup depending on the data type of the property that is being rendered, and according to whether the property is marked with certain attributes. The method renders markup according to the following rules:

  • If the property is typed as a primitive type (integer, string, and so on), the method renders an HTML input element for a text box. For example, a property named Height that is typed as a integer might render markup such as the following:

    <input class="text-box single-line"

    id="Height"

    name="Height"

    type="text"

    value="68"

    />

  • If a property is marked with a data-type attribute or a UIHintAttribute attribute, the attribute specifies the markup that is generated for the property. For example, if the property is marked with the MultilineText attribute, the method generates markup for a multi-line text box.

  • If the object contains multiple properties, for each property, the method generates a string that consists of markup for the property name and an input element to modify the property value.

Examples

A Visual Studio project with source code is available to accompany this topic: Download.

See Also

Reference

EditorExtensions Class

Editor Overload

System.Web.Mvc.Html Namespace