Disable autocomplete on html helper textbox in MVC

前端 未结 9 1144
太阳男子
太阳男子 2021-01-12 02:17

Ok,

I would in normal asp.net use a theme to turn off autocomplete on all text boxes on an entire site. However i cannot do this on MVC because nothing in the theme

9条回答
  •  太阳男子
    2021-01-12 02:42

    ASP.net MVC HTML Attribute: Which is having type="text" Managed by JQUERY code

    @Html.TextBoxFor(model => model.FirstName, new {@id = "txtFirstName"})
    
    
    
    

提交回复
热议问题