共用方式為


IHtmlHelper.TextBox(String, Object, String, Object) 方法

定義

傳 < 回指定 expression 之 類型為 「text」 的輸入 > 專案。 將 「value」 屬性加入至包含中第一個非 null 值的專案: ModelState 具有完整名稱的專案、 value 參數、具有完整名稱的專案、 ViewData 針對 Model 評估的 , expression 或是 htmlAttributes 索引鍵為 「value」 的字典專案。 如需有關「完整名稱」的詳細資訊,請參閱 Name(String)

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

參數

currentexpression
String

相對於目前模型的運算式名稱。

value
Object

如果為非 null ,則為 要包含在 元素中的值。

format
String

除非來自模型系結,否則格式字串 (會看到 https://msdn.microsoft.com/en-us/library/txafckwd.aspx 用來格式化 「value」 屬性的) 。

htmlAttributes
Object

Object,其中包含 專案的 HTML 屬性。 或者, IDictionary<TKey,TValue> 包含 HTML 屬性的實例。

傳回

新的 IHtmlContent , < 其中包含輸入 > 專案。

備註

HtmlFieldPrefix結合 和 expression 以設定 < 輸入 > 元素的 「name」 屬性。 清理 expression 以設定元素的 「id」 屬性。

適用於