HtmlHelper.TextBox Method (String, Object, Object)
Returns an HTML text control that has the specified name, value, and custom attributes defined by an attribute object.
Namespace: System.Web.WebPages.Html
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public Function TextBox ( _
name As String, _
value As Object, _
htmlAttributes As Object _
) As IHtmlString
'Usage
Dim instance As HtmlHelper
Dim name As String
Dim value As Object
Dim htmlAttributes As Object
Dim returnValue As IHtmlString
returnValue = instance.TextBox(name, value, _
htmlAttributes)
public IHtmlString TextBox(
string name,
Object value,
Object htmlAttributes
)
public:
IHtmlString^ TextBox(
String^ name,
Object^ value,
Object^ htmlAttributes
)
member TextBox :
name:string *
value:Object *
htmlAttributes:Object -> IHtmlString
public function TextBox(
name : String,
value : Object,
htmlAttributes : Object
) : IHtmlString
Parameters
- name
Type: System.String
The value to assign to the name attribute of the HTML control element.
- value
Type: System.Object
The value to assign to the value attribute of the element.
- htmlAttributes
Type: System.Object
An object that contains custom attributes for the element. The attribute names and values are retrieved through reflection by examining the properties of the object.
Return Value
Type: System.Web.IHtmlString
The HTML markup that represents the text control.
Exceptions
Exception | Condition |
---|---|
ArgumentException | name is null reference (Nothing in Visual Basic) or empty. |
Remarks
The returned markup consists of an HTML input element in the following form:
<input type="text" name="name" value="value" ...htmlAttributes... />