0

MVC3 を使用して 1 つのページを作成しました。すべての詳細を入力しました。送信ボタンをクリックすると、挿入は行われず、ポストバックだけですべての詳細が失われます。

これがコントローラー

[HttpGet]
public ActionResult MyAccountIndex()
{
    return View();
}

[HttpPost]
public ActionResult MyAccountIndex(MyAccount myacc)
{
    MyAccount ma = new MyAccount();
    var objview = ma.GetCustInfo(myacc);
    return View();
}
4

1 に答える 1

0

ビューのフォームを次のように変更します。

<form action="MyAccountIndex" method="POST">
    <input type="submit" />
</form>
于 2013-01-06T12:23:34.030 に答える