How to set the width of the text box when using Html.TextBoxFor

后端 未结 6 1267
走了就别回头了
走了就别回头了 2021-02-01 02:20

I have the following line in my view:

<%= Html.TextBoxFor(m => m.Description)%>
6条回答
  •  情歌与酒
    2021-02-01 03:07

    You can do also like this

      @Html.TextBoxFor(model => model.Email, new Dictionary() { { "readonly", "true" }, { "style", "width:250px;" } })
    

提交回复
热议问题