Compartir a través de


InputExtensions.TextBox Método

Definición

Sobrecargas

TextBox(HtmlHelper, String, Object, String, Object)

Devuelve un elemento input de texto.

TextBox(HtmlHelper, String, Object, String, IDictionary<String,Object>)

Devuelve un elemento input de texto.

TextBox(HtmlHelper, String, Object, String)

Devuelve un elemento input de texto.

TextBox(HtmlHelper, String, Object)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario y el valor.

TextBox(HtmlHelper, String, Object, IDictionary<String,Object>)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario, el valor y los atributos HTML.

TextBox(HtmlHelper, String)

Devuelve un elemento entrada de texto mediante el asistente de HTML especificado y el nombre del campo de formulario.

TextBox(HtmlHelper, String, Object, Object)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario, el valor y los atributos HTML.

TextBox(HtmlHelper, String, Object, String, Object)

Devuelve un elemento input de texto.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, string format, object htmlAttributes);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj * string * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object, format As String, htmlAttributes As Object) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

format
String

Cadena que se usa para dar formato a la entrada.

htmlAttributes
Object

Objeto que contiene los atributos HTML que se van a establecer para el elemento .

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String, Object, String, IDictionary<String,Object>)

Devuelve un elemento input de texto.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, string format, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj * string * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object, format As String, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

format
String

Cadena que se usa para dar formato a la entrada.

htmlAttributes
IDictionary<String,Object>

Objeto que contiene los atributos HTML que se van a establecer para el elemento .

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String, Object, String)

Devuelve un elemento input de texto.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, string format);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj * string -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object, format As String) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

format
String

Cadena que se usa para dar formato a la entrada.

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String, Object)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario y el valor.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String, Object, IDictionary<String,Object>)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario, el valor y los atributos HTML.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

htmlAttributes
IDictionary<String,Object>

Objeto que contiene los atributos HTML que se van a establecer para el elemento .

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String)

Devuelve un elemento entrada de texto mediante el asistente de HTML especificado y el nombre del campo de formulario.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name);
static member TextBox : System.Web.Mvc.HtmlHelper * string -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a

TextBox(HtmlHelper, String, Object, Object)

Devuelve un elemento input de texto mediante el asistente de HTML especificado, el nombre del campo de formulario, el valor y los atributos HTML.

public static System.Web.Mvc.MvcHtmlString TextBox (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, object htmlAttributes);
static member TextBox : System.Web.Mvc.HtmlHelper * string * obj * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextBox (htmlHelper As HtmlHelper, name As String, value As Object, htmlAttributes As Object) As MvcHtmlString

Parámetros

htmlHelper
HtmlHelper

Instancia del asistente HTML que extiende este método.

name
String

Nombre del campo de formulario y la ViewDataDictionary clave que se usa para buscar el valor.

value
Object

Valor del elemento de entrada de texto. El valor se recupera en este orden: el ModelStateDictionary objeto, el valor de este parámetro, el ViewDataDictionary objeto y, por último, un atributo value en los atributos html.

htmlAttributes
Object

Objeto que contiene los atributos HTML que se van a establecer para el elemento .

Devoluciones

Un elemento de entrada cuyo atributo de tipo está establecido en "text".

Se aplica a