HtmlHelper.TextBox(String, Object, String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
<傳回指定 expression
之 類型為 「text」 的輸入 > 專案。 將 「value」 屬性加入至包含中第一個非 null
值的專案: ModelState 具有完整名稱的專案、 value
參數、具有完整名稱的專案、 ViewDataexpression
針對 評估 Model 的 ,或 htmlAttributes
索引鍵 「value」 的字典專案。
如需有關「完整名稱」的詳細資訊,請參閱 Name(String) 。
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
參數
- expression
- 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 ,其中包含 < 輸入 > 專案。