ホームページ >ウェブフロントエンド >htmlチュートリアル >MVC の HTML コントロールを readonly_html/css_WEB-ITnose に設定します。
1. ドロップダウン ボックスを読み取り専用に設定し、これを試してみました:
@Html.DropDownListFor(model => model.SecondDevelopment, (SelectList)ViewBag.swseconddevelopment, new { disabled = "disabled" })
@Html.TextBoxFor(model => model.ProjectLeaderName, new { @readonly = "readonly" })
3. 複数選択ボックス
@Html.CheckBoxListFor(model => model.ProvideService, (SelectList)ViewBag.swprovideservice,null, new { @readonly = true })
れーい