LabelExtensions.LabelForModel Method (HtmlHelper, String)

Returns an HTML label element and the property name of the property that is represented by the specified expression using the label text.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function LabelForModel ( _
    html As HtmlHelper, _
    labelText As String _
) As MvcHtmlString
'Usage
Dim html As HtmlHelper
Dim labelText As String
Dim returnValue As MvcHtmlString

returnValue = html.LabelForModel(labelText)
public static MvcHtmlString LabelForModel(
    this HtmlHelper html,
    string labelText
)
[ExtensionAttribute]
public:
static MvcHtmlString^ LabelForModel(
    HtmlHelper^ html, 
    String^ labelText
)
public static function LabelForModel(
    html : HtmlHelper, 
    labelText : String
) : MvcHtmlString

Parameters

Return Value

Type: System.Web.Mvc.MvcHtmlString
An HTML label element and the property name of the property 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 b8020aae-374d-46a9-bcb7-8cc2390b93b6 or 175ce3ff-9bbf-4e64-8421-faeb81a0bb51.

See Also

Reference

LabelExtensions Class

LabelForModel Overload

System.Web.Mvc.Html Namespace