我使用MVC3创建了一个页面。我已经填写了所有细节,当我点击提交按钮时,它没有插入,只是回发,所有细节都丢失了。
这是控制器
[HttpGet]
public ActionResult MyAccountIndex()
{
return View();
}
[HttpPost]
public ActionResult MyAccountIndex(MyAccount myacc)
{
MyAccount ma = new MyAccount();
var objview = ma.GetCustInfo(myacc);
return View();
}
答案 0 :(得分:0)
将视图中的表单更改为:
<form action="MyAccountIndex" method="POST">
<input type="submit" />
</form>