編集画面などで、編集されたくないけど、textbox に設定内容を表示したい場合には readonly 属性を付けると良い。
ただ、検索すると以下の3つが出てくるので、正常に動作しない場合は、いずれかを試してみると良いかもしれない。
1 2 3 4 5 |
@Html.EditorFor(model => model.Message, new { htmlAttributes = new { @readonly = "readonly" } }) @Html.EditorFor(model => model.Message, new { htmlAttributes = new { @readonly = "true" } }) @Html.EditorFor(model => model.Message, new { htmlAttributes = new { @readonly = "" } }) |