标签: html textbox html-helper
如何将id提供给html文本框?
我的html标签看起来像这样
<%=Html.TextBox("username")%>
有什么建议吗?
答案 0 :(得分:4)
<%= Html.TextBox("username",new { ID = "<put id here>"}) %>