HtmlHelper.TextBox(String, Object, String, Object) 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.
Retourne un élément d’entrée <> de type « text » pour le spécifiéexpression
. Ajoute un attribut « value » à l’élément contenant la première valeur non-trouvéenull
dans : l’entrée avec le ModelState nom complet, le value
paramètre, l’entrée ViewData avec le nom complet, le expression
évalué par Modelou l’entrée de dictionnaire avec la htmlAttributes
clé « value ».
Consultez Name(String) pour plus d’informations sur un « nom complet ».
public:
virtual Microsoft::AspNetCore::Html::IHtmlContent ^ TextBox(System::String ^ expression, System::Object ^ value, System::String ^ format, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent TextBox (string expression, object value, string format, object htmlAttributes);
abstract member TextBox : string * obj * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.TextBox : string * obj * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function TextBox (expression As String, value As Object, format As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- expression
- String
Nom de l’expression, relatif au modèle actuel.
- value
- Object
Si ce n’est pasnull
le cas, valeur à inclure dans l’élément .
- format
- String
Chaîne de format (voir https://msdn.microsoft.com/en-us/library/txafckwd.aspx) utilisée pour mettre en forme l’attribut « value », sauf si elle provient de la liaison de modèle.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Nouveau IHtmlContent contenant l’élément d’entrée<>.