IHtmlHelper.TextBox(String, Object, String, Object) Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
<Zwraca element wejściowy> typu "text" dla określonego expression
elementu . Dodaje atrybut "value" do elementu zawierającego pierwszą nie-wartośćnull
znalezioną w: ModelState wpis z pełną nazwą, value
parametr, wpis z pełną nazwą, ViewDataexpression
obliczany względem Modelelementu lub wpis słownika htmlAttributes
z kluczem "value".
Zobacz Name(String) , aby uzyskać więcej informacji na temat "pełnej nazwy".
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
Parametry
- currentexpression
- String
Nazwa wyrażenia względem bieżącego modelu.
- value
- Object
Jeśli nienull
, wartość do uwzględnienia w elemecie .
- format
- String
Ciąg formatu (patrz https://msdn.microsoft.com/en-us/library/txafckwd.aspx) używany do formatowania atrybutu "value", chyba że pochodzi z powiązania modelu.
- htmlAttributes
- Object
Element Object zawierający atrybuty HTML elementu . Alternatywnie IDictionary<TKey,TValue> wystąpienie zawierające atrybuty HTML.
Zwraca
Nowy IHtmlContent element zawierający <element wejściowy> .
Uwagi
Łączy HtmlFieldPrefix i expression
ustawia <atrybut "name" elementu wejściowego> .
expression
Określa atrybut "id" elementu.