从视图中调用actionresult

时间:2015-06-14 06:42:48

标签: asp.net-mvc asp.net-mvc-3

这是我的ActionResult()

    public ActionResult pay()
    {
        return View();

    }

    [HttpPost]
    public ActionResult mytry()
    {
        return View();
    }

这是我的观点pay.chtml

@using (Html.BeginForm("mytry", "Home"))
{ 
<table>
<tr>
    <td align="center">


        <input type="button" value="submit" />
    </td>
  </tr>

</table>
}

我无法从此处调用mytry()操作结果。怎么做?

1 个答案:

答案 0 :(得分:2)

要提交表单,您必须使用<input type="submit" /><button type="submit">请尝试以下操作:

@using (Html.BeginForm("mytry", "Home", FormMethod.Post))
{ 
  <table>
    <tr>
      <td align="center">
        <input id="btnSubmit" type="submit" value="Submit" />
      </td>
    </tr>
  </table>
}