LabelExtensions.LabelFor<TModel, TValue> Method (HtmlHelper<TModel>, Expression<Func<TModel, TValue>>, 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 LabelFor(Of TModel, TValue) ( _
    html As HtmlHelper(Of TModel), _
    expression As Expression(Of Func(Of TModel, TValue)), _
    labelText As String _
) As MvcHtmlString
'Usage
Dim html As HtmlHelper(Of TModel)
Dim expression As Expression(Of Func(Of TModel, TValue))
Dim labelText As String
Dim returnValue As MvcHtmlString

returnValue = html.LabelFor(expression, _
    labelText)
public static MvcHtmlString LabelFor<TModel, TValue>(
    this HtmlHelper<TModel> html,
    Expression<Func<TModel, TValue>> expression,
    string labelText
)
[ExtensionAttribute]
public:
generic<typename TModel, typename TValue>
static MvcHtmlString^ LabelFor(
    HtmlHelper<TModel>^ html, 
    Expression<Func<TModel, TValue>^>^ expression, 
    String^ labelText
)
JScript does not support generic types or methods.

Type Parameters

  • TModel
    The type of the model.
  • TValue
    The type of the value.

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<TModel>. 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

LabelFor Overload

System.Web.Mvc.Html Namespace