LabelExtensions.Label Method (HtmlHelper, String, 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 Label ( _
    html As HtmlHelper, _
    expression As String, _
    labelText As String _
) As MvcHtmlString
'Usage
Dim html As HtmlHelper
Dim expression As String
Dim labelText As String
Dim returnValue As MvcHtmlString

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

Parameters

  • expression
    Type: System.String
    An expression that identifies the property to display.

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

Label Overload

System.Web.Mvc.Html Namespace