当前位置:Gxlcms > html代码 > MVC中HTML控件设为只读readonly_html/css_WEB-ITnose

MVC中HTML控件设为只读readonly_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:38人阅读

1.下拉框设为只读试了试用这个有效:

  @Html.DropDownListFor(model => model.SecondDevelopment, (SelectList)ViewBag.swseconddevelopment, new { disabled = "disabled" })

2.文本框:
 @Html.TextBoxFor(model => model.ProjectLeaderName, new { @readonly = "readonly" })

3.多选框

 @Html.CheckBoxListFor(model => model.ProvideService, (SelectList)ViewBag.swprovideservice,null, new { @readonly = true })

4.单选按钮

  @Html.RadioButtonListFor(model => model.NeedApply, (SelectList)ViewBag.swneedapplyornot, null, new { disabled = "disabled" })

人气教程排行