Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
html
Type: System.Web.Mvc.HtmlHelperThe HTML helper instance that this method extends.
name
Type: System.StringAn 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