2 implementations of TextBox
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
677
public IHtmlContent
TextBox
(string expression, object value, string format, object htmlAttributes)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
DefaultEditorTemplatesTest.cs (1)
1600
public IHtmlContent
TextBox
(string name, object value, string format, object htmlAttributes)
5 references to TextBox
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
DefaultEditorTemplates.cs (1)
450
return htmlHelper.
TextBox
(
Rendering\HtmlHelperInputExtensions.cs (4)
433
return htmlHelper.
TextBox
(expression, value: null, format: null, htmlAttributes: null);
461
return htmlHelper.
TextBox
(expression, value, format: null, htmlAttributes: null);
494
return htmlHelper.
TextBox
(expression, value, format, htmlAttributes: null);
529
return htmlHelper.
TextBox
(expression, value, format: null, htmlAttributes: htmlAttributes);