HtmlHelperInputExtensions.TextBoxFor Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>) |
Returns an <input> element of type "text" for the specified |
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>, Object) |
Returns an <input> element of type "text" for the specified |
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>, String) |
Returns an <input> element of type "text" for the specified |
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Returns an <input> element of type "text" for the specified expression
. Adds a
"value" attribute to the element containing the first non-null
value found in:
the ModelState entry with full name, or
the expression
evaluated against Model.
See NameFor<TResult>(Expression<Func<TModel,TResult>>) for more information about a "full name".
public:
generic <typename TModel, typename TResult>
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextBoxFor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper<TModel> ^ htmlHelper, System::Linq::Expressions::Expression<Func<TModel, TResult> ^> ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent TextBoxFor<TModel,TResult> (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TResult>> expression);
static member TextBoxFor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Result>> -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextBoxFor(Of TModel, TResult) (htmlHelper As IHtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TResult))) As IHtmlContent
Type Parameters
- TModel
The type of the model.
- TResult
The type of the expression
result.
Parameters
- htmlHelper
- IHtmlHelper<TModel>
The IHtmlHelper<TModel> instance this method extends.
- expression
- Expression<Func<TModel,TResult>>
An expression to be evaluated against the current model.
Returns
A new IHtmlContent containing the <input> element.
Remarks
Combines HtmlFieldPrefix and the string representation of the expression
to set <input> element's "name" attribute. Sanitizes the string representation of the expression
to set element's "id" attribute.
Applies to
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Returns an <input> element of type "text" for the specified expression
. Adds a
"value" attribute to the element containing the first non-null
value found in:
the ModelState entry with full name,
the expression
evaluated against Model, or
the htmlAttributes
dictionary entry with key "value".
See NameFor<TResult>(Expression<Func<TModel,TResult>>) for more information about a "full name".
public:
generic <typename TModel, typename TResult>
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextBoxFor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper<TModel> ^ htmlHelper, System::Linq::Expressions::Expression<Func<TModel, TResult> ^> ^ expression, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent TextBoxFor<TModel,TResult> (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TResult>> expression, object htmlAttributes);
static member TextBoxFor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Result>> * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextBoxFor(Of TModel, TResult) (htmlHelper As IHtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TResult)), htmlAttributes As Object) As IHtmlContent
Type Parameters
- TModel
The type of the model.
- TResult
The type of the expression
result.
Parameters
- htmlHelper
- IHtmlHelper<TModel>
The IHtmlHelper<TModel> instance this method extends.
- expression
- Expression<Func<TModel,TResult>>
An expression to be evaluated against the current model.
- htmlAttributes
- Object
An Object that contains the HTML attributes for the element. Alternatively, an IDictionary<TKey,TValue> instance containing the HTML attributes.
Returns
A new IHtmlContent containing the <input> element.
Remarks
Combines HtmlFieldPrefix and the string representation of the expression
to set <input> element's "name" attribute. Sanitizes the string representation of the expression
to set element's "id" attribute.
Applies to
TextBoxFor<TModel,TResult>(IHtmlHelper<TModel>, Expression<Func<TModel,TResult>>, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Returns an <input> element of type "text" for the specified expression
. Adds a
"value" attribute to the element containing the first non-null
value found in:
the ModelState entry with full name, or
the expression
evaluated against Model.
See NameFor<TResult>(Expression<Func<TModel,TResult>>) for more information about a "full name".
public:
generic <typename TModel, typename TResult>
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextBoxFor(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper<TModel> ^ htmlHelper, System::Linq::Expressions::Expression<Func<TModel, TResult> ^> ^ expression, System::String ^ format);
public static Microsoft.AspNetCore.Html.IHtmlContent TextBoxFor<TModel,TResult> (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TResult>> expression, string format);
static member TextBoxFor : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Result>> * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextBoxFor(Of TModel, TResult) (htmlHelper As IHtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TResult)), format As String) As IHtmlContent
Type Parameters
- TModel
The type of the model.
- TResult
The type of the expression
result.
Parameters
- htmlHelper
- IHtmlHelper<TModel>
The IHtmlHelper<TModel> instance this method extends.
- expression
- Expression<Func<TModel,TResult>>
An expression to be evaluated against the current model.
- format
- String
The format string (see https://msdn.microsoft.com/en-us/library/txafckwd.aspx) used to format the
expression
value when using that in the "value" attribute.
Returns
A new IHtmlContent containing the <input> element.
Remarks
Combines HtmlFieldPrefix and the string representation of the expression
to set <input> element's "name" attribute. Sanitizes the string representation of the expression
to set element's "id" attribute.