0

我使用 MVC3 创建了一个页面。我已经填写了所有细节,当我点击提交按钮时,它没有插入,只是回发,所有细节都丢失了。

这是控制器

[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

将 View 中的表单更改为:

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