查看:
@using (@Html.BeginForm("Show", "test", FormMethod.Post))
{
<fieldset>
<table >
<tr>
<td>
@Html.LabelFor(model=> model.Show)
</td>
<td>
@Html.TextBox("txtvalue", null)
</td>
</tr>
</table>
<input type="button" value="Show" onclick = "@("location.href='"+ @Url.Action("Show", "test")+"'" )" />
<input type="button" value="Go" onclick ="@("location.href='"+ @Url.Action("Go", "test")+"'" )"/>
</fieldset>
}
和控制器中的两个操作方法
public ActionResult Show(string txtvalue)
{
...
}
public ActionResult Go(string txtvalue)
{
...
}
根据点击的按钮,它应该转到相应的操作方法并传递文本框的值。
任何人都可以建议我这样做的方法。我绕着脑袋想不通。
答案 0 :(得分:1)
试试这个,
<input type="button" value="Show" onclick = "location.href='@Url.Action("Show", "Foo")'"/>
<input type="button" value="Go" onclick = "location.href='@Url.Action("Go", "Foo")'"/>
<强>更新强>
由于type="button"
未提交表单中的值,因此无法直接执行您所要求的操作,更好的方法是识别已在控制器方法中单击的按钮,如{{ 3}}
答案 1 :(得分:0)
尝试类似:
<input type="button" value="Show" onclick="location.href='<%:Url.Action("Show", "ControllerName")%>'"/>
<input type="button" value="Go" onclick="location.href='<%:Url.Action("Go", "ControllerName")%>'"/>
如果要发布更多表单数据,可以使用Ajax,请参阅Making a Simple Ajax call to controller in asp.net mvc
答案 2 :(得分:0)
试试这个
<input type="button" value="Show" onclick="location.href='<%: Url.Action("Show", "Controller") %>'" />
<input type="button" value="Go" onclick="location.href='<%: Url.Action("Go", "Controller") %>'" />