HtmlHelper.Password Method

Definition

Overloads

Password(String, Object, Object)

Returns an HTML password control that has the specified name, value, and custom attributes defined by an attribute object.

Password(String, Object, IDictionary<String,Object>)

Returns an HTML password control that has the specified name, value, and custom attributes defined by an attribute dictionary.

Password(String, Object)

Returns an HTML password control that has the specified name and value.

Password(String)

Returns an HTML password control that has the specified name.

Password(String, Object, Object)

Returns an HTML password control that has the specified name, value, and custom attributes defined by an attribute object.

public System.Web.IHtmlString Password (string name, object value, object htmlAttributes);
member this.Password : string * obj * obj -> System.Web.IHtmlString
Public Function Password (name As String, value As Object, htmlAttributes As Object) As IHtmlString

Parameters

name
String

The value to assign to the name attribute of the HTML control element.

value
Object

The value to assign to the value attribute of the element.

htmlAttributes
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.

Returns

The HTML markup that represents the password control.

Exceptions

Sytem.ArgumentException

name is null or empty.

Applies to

Password(String, Object, IDictionary<String,Object>)

Returns an HTML password control that has the specified name, value, and custom attributes defined by an attribute dictionary.

public System.Web.IHtmlString Password (string name, object value, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
member this.Password : string * obj * System.Collections.Generic.IDictionary<string, obj> -> System.Web.IHtmlString
Public Function Password (name As String, value As Object, htmlAttributes As IDictionary(Of String, Object)) As IHtmlString

Parameters

name
String

The value to assign to the name attribute of the HTML control element.

value
Object

The value to assign to the value attribute of the element.

htmlAttributes
IDictionary<String,Object>

The names and values of custom attributes for the element.

Returns

The HTML markup that represents the password control.

Exceptions

Sytem.ArgumentException

name is null or empty.

Applies to

Password(String, Object)

Returns an HTML password control that has the specified name and value.

public System.Web.IHtmlString Password (string name, object value);
member this.Password : string * obj -> System.Web.IHtmlString
Public Function Password (name As String, value As Object) As IHtmlString

Parameters

name
String

The value to assign to the name attribute of the HTML control element.

value
Object

The value to assign to the value attribute of the element.

Returns

The HTML markup that represents the password control.

Exceptions

Sytem.ArgumentException

name is null or empty.

Applies to

Password(String)

Returns an HTML password control that has the specified name.

public System.Web.IHtmlString Password (string name);
member this.Password : string -> System.Web.IHtmlString
Public Function Password (name As String) As IHtmlString

Parameters

name
String

The value to assign to the name attribute of the HTML control element.

Returns

The HTML markup that represents the password control.

Exceptions

Sytem.ArgumentException

name is null or empty.

Applies to