点击提交按钮调试指向[httpget]而不是[httppost]

时间:2012-07-25 08:39:59

标签: asp.net-mvc-3

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

这是控制器

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

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

1 个答案:

答案 0 :(得分:0)

将视图中的表单更改为:

<form action="MyAccountIndex" method="POST">
    <input type="submit" />
</form>