我的表格如下:
<form action='@Url.Action("submitForm", "Home")'>
<fieldset>
<legend>User Details</legend>
<input type="checkbox" name="authorisedCheckbox" value="Authorised" id="authCheck" />Authorised<br />
<input type="checkbox" name="enabledCheckbox" value="Enabled" id="eCheck" />Enabled<br />
</fieldset>
<input type="submit" value="Save Changes" name="Save Changes">
<button type="button">Cancel</button>
</form>
这会调用控制器中的方法:
[HttpPost]
public ActionResult submitForm(string authorisedCheckbox, string enabledCheckbox)
{
System.Diagnostics.Debug.WriteLine("input values: ");
System.Diagnostics.Debug.WriteLine(authorisedCheckbox);
System.Diagnostics.Debug.WriteLine(enabledCheckbox);
//some other processing will be done here
return View();
}
但是当按下按钮时,表单会给出404未找到的错误。我看过使用@using的帖子(Html.BeginForm(&#34;方法&#34;,&#34;控制器&#34;)) - 是使用ASP.NET MVC调用控制器方法的唯一方法吗?
答案 0 :(得分:0)
感谢@Stephen Muecke指出简单的事情是在标签上添加method ='post'。
该动作也用于引用视图,因此我会将'submitForm'更改为更合适的内容,如@Dai所示。