IHtmlHelper.TextBox(String, Object, String, Object) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为<指定的 expression
返回类型为“text”的输入>元素。 将“value”属性添加到元素,其中包含中找到的第一个非null
值: ModelState 具有全名的 value
条目、参数、 ViewData 具有全名的条目、 expression
针对 Model求值的 或 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”属性。