在 Razor 中,我可以通过执行以下操作关闭文本框上的自动完成功能:
@Html.EditorFor(model => model.UserName, new { autocomplete = "off" })
有没有办法可以在 ViewModel 中使用 DataAnnotations 而不是在 View 中指定它?
在 Razor 中,我可以通过执行以下操作关闭文本框上的自动完成功能:
@Html.EditorFor(model => model.UserName, new { autocomplete = "off" })
有没有办法可以在 ViewModel 中使用 DataAnnotations 而不是在 View 中指定它?