次のようなコントローラーアクションがあります
public ActionResult OpenForm()
{
return View("Index");
}
そして、私のビューは次のとおりです[Index.cshtml]
@model BusinessProcess.Models.HelloworldTO
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
@Html.DisplayNameFor(model => model.Response_Borrower)
@Html.EditorFor(model => model.Response_Borrower)
}
問題は、「編集」と「表示」の両方に同じビューを使用していることです。特定の状況下では、ユーザーがデータを「表示」して変換することだけを望んでい@Html.EditorFor
ます@Html.DisplayFor
。別のビューを作成せずにそれを行う方法はありますか?