InputExtensions.TextBox Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
TextBox(HtmlHelper, String, Object, String, Object) |
Retourne un élément d’entrée de texte. |
TextBox(HtmlHelper, String, Object, String, IDictionary<String,Object>) |
Retourne un élément d’entrée de texte. |
TextBox(HtmlHelper, String, Object, String) |
Retourne un élément d’entrée de texte. |
TextBox(HtmlHelper, String, Object) |
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire et de la valeur. |
TextBox(HtmlHelper, String, Object, IDictionary<String,Object>) |
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire, de la valeur et des attributs HTML. |
TextBox(HtmlHelper, String) |
Retourne un élément input de texte à l'aide du programme d'assistance HTML spécifié et du nom du champ de formulaire. |
TextBox(HtmlHelper, String, Object, Object) |
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire, de la valeur et des attributs HTML. |
TextBox(HtmlHelper, String, Object, String, Object)
Retourne un élément d’entrée de texte.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
- format
- String
Chaîne utilisée pour mettre en forme l'entrée.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String, Object, String, IDictionary<String,Object>)
Retourne un élément d’entrée de texte.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
- format
- String
Chaîne utilisée pour mettre en forme l'entrée.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String, Object, String)
Retourne un élément d’entrée de texte.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
- format
- String
Chaîne utilisée pour mettre en forme l'entrée.
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String, Object)
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire et de la valeur.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String, Object, IDictionary<String,Object>)
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire, de la valeur et des attributs 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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String)
Retourne un élément input de texte à l'aide du programme d'assistance HTML spécifié et du nom du champ de formulaire.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
Retours
Élément input dont l'attribut type a la valeur « text ».
S’applique à
TextBox(HtmlHelper, String, Object, Object)
Retourne un élément d’entrée de texte à l’aide de l’assistance HTML spécifiée, du nom du champ de formulaire, de la valeur et des attributs 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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire et de la ViewDataDictionary clé utilisée pour rechercher la valeur.
- value
- Object
Valeur de l'élément input de texte. La valeur est récupérée dans cet ordre : l’objet ModelStateDictionary , la valeur de ce paramètre, l’objet ViewDataDictionary et enfin, un attribut value dans les attributs html.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément input dont l'attribut type a la valeur « text ».