0

私はかみそりの形をしています:

   @Html.TextBoxFor(m=> m.SystolicBT, new{@class="RiskScoreTextBox"})
   @Html.TextBoxFor(m=> m.PersonWeight, new{@class="RiskScoreTextBox"})
   @Html.TextBoxFor(m=> m.PersonWeight, new{@class="RiskScoreTextBox"})

次に、オブジェクトを取得してセッションに保存するこのメソッドがあります。

  [HttpPost]
    public ActionResult CreatePrototype(DementiaPrototypeModel Prototype)
    {
        Session["DemensPrototype"] = Prototype;

        return RedirectToAction("RiskScore");
    }

その後、私はこのメソッドに送信されます:

  [HttpGet]
    public ViewResult RiskScore()
    {
        var prototype = Session["DemensPrototype"];
        return View();
    }

ここで、プロトタイプをホバーするとオブジェクトを表示できますが、保存されているオブジェクト情報を入力したい同様のフォームがあります。それ、どうやったら出来るの?

4

1 に答える 1