Share via


NameExtensions.Id Method (HtmlHelper, String)

 

Gets the ID of the HtmlHelper string.

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

Syntax

public static MvcHtmlString Id(
    this HtmlHelper html,
    string name
)
public:
[ExtensionAttribute]
static MvcHtmlString^ Id(
    HtmlHelper^ html,
    String^ name
)
static member Id : 
        html:HtmlHelper *
        name:string -> MvcHtmlString
<ExtensionAttribute>
Public Shared Function Id (
    html As HtmlHelper,
    name As String
) As MvcHtmlString

Parameters

  • name
    Type: System.String

    An expression that identifies the object that contains the ID.

Return Value

Type: System.Web.Mvc.MvcHtmlString

The HTML ID attribute value for the object that is represented by the expression.

See Also

NameExtensions Class
System.Web.Mvc.Html Namespace

Return to top