Html.TextBox
语法是:
public static MvcHtmlString TextBox(this HtmlHelper htmlHelper, string name,
object value, object htmlAttributes);
所以,我把我的数据属性放在htmlAttributes
. 我试过了
@Html.TextBox("date",Model.Date,new { data-myid="aaa"})
但这对我不起作用。