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.
Returns HTML markup for each property in the object that is represented by the specified expression.
Namespace: System.Web.Mvc.Html
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
public static MvcHtmlString DisplayText(
this HtmlHelper html,
string name
)
public:
[ExtensionAttribute]
static MvcHtmlString^ DisplayText(
HtmlHelper^ html,
String^ name
)
static member DisplayText :
html:HtmlHelper *
name:string -> MvcHtmlString
<ExtensionAttribute>
Public Shared Function DisplayText (
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 properties to display.
Return Value
Type: System.Web.Mvc.MvcHtmlString
The HTML markup for each property in the object that is represented by the expression.
See Also
DisplayTextExtensions Class
System.Web.Mvc.Html Namespace
Return to top