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();
}