Share via


ValueExtensions.Value Method (HtmlHelper, String, String)

Provides a mechanism to create custom HTML markup compatible with the ASP.NET MVC model binders and templates.

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

Syntax

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

returnValue = html.Value(name, format)
public static MvcHtmlString Value(
    this HtmlHelper html,
    string name,
    string format
)
[ExtensionAttribute]
public:
static MvcHtmlString^ Value(
    HtmlHelper^ html, 
    String^ name, 
    String^ format
)
static member Value : 
        html:HtmlHelper * 
        name:string * 
        format:string -> MvcHtmlString
public static function Value(
    html : HtmlHelper, 
    name : String, 
    format : String
) : MvcHtmlString

Parameters

Return Value

Type: System.Web.Mvc.MvcHtmlString
The HTML markup for the value.

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 https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).

See Also

Reference

ValueExtensions Class

Value Overload

System.Web.Mvc.Html Namespace