IHtmlHelper.TextBox(String, Object, String, Object) Méthode

Définition

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:
 Microsoft::AspNetCore::Html::IHtmlContent ^ TextBox(System::String ^ current, System::Object ^ value, System::String ^ format, System::Object ^ htmlAttributes);
public:
 Microsoft::AspNetCore::Html::IHtmlContent ^ TextBox(System::String ^ expression, System::Object ^ value, System::String ^ format, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent TextBox (string current, object value, string format, 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
abstract member TextBox : string * obj * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function TextBox (current As String, value As Object, format As String, htmlAttributes As Object) As IHtmlContent
Public Function TextBox (expression As String, value As Object, format As String, htmlAttributes As Object) As IHtmlContent

Paramètres

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

Remarques

HtmlFieldPrefix Combine et expression pour définir <l’attribut « name » de l’élément d’entrée>. Assainit expression pour définir l’attribut « id » de l’élément.

S’applique à