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