How to set a default value with Html.TextBoxFor?

后端 未结 12 2250
清歌不尽
清歌不尽 2020-12-04 07:24

Simple question, if you use the Html Helper from ASP.NET MVC Framework 1 it is easy to set a default value on a textbox because there is an overload Html.TextBox(strin

12条回答
  •  北海茫月
    2020-12-04 07:47

    This should work for MVC3 & MVC4

     @Html.TextBoxFor(m => m.Age, new { @Value = "12" }) 
    

    If you want it to be a hidden field

     @Html.TextBoxFor(m => m.Age, new { @Value = "12",@type="hidden" }) 
    

提交回复
热议问题