このような問題があります。ContenuReponse をデータベースに更新する必要があります。ContenuReponse を見ると、次のようになります。
<div class="editor-field">
@Html.EditorFor(model => model.ContenuReponse)
@Html.ValidationMessageFor(model => model.ContenuReponse)
</div>
(私は、テキストボックスの編集ビューのテンプレートMVC4 Internet Appのexpressを使用しています)と、応答のコントローラーには次のものがあります。
public ActionResult Reponse(int id = 0)
{
Question question = db.Questions.Find(id);
if (question == null)
{
return HttpNotFound();
}
return View(question);
}
[HttpPost]
public ActionResult Reponse(Question question)
{
}
私は何をしなければなりませんか
[HttpPost]
public ActionResult Reponse(Question question)
{
}
Viewのテキストボックスから値を取得します。何か案は ?ご清聴ありがとうございました!