在我的表单中,我看到数据作为 Querystring 而不是表单数据(我期望它)发送。
我的页面:
@using (Html.BeginForm("AAForm", "Test", FormMethod.Post, new { id = "myAForm" }))
{
<label for="a">A</label>
<input id="aid" name="aname" style="width: 300px" required validationMessage="Select"/>
<button type="submit" class="btn btn-primary" value="aa" > Go </button>
}
控制器签名
public ActionResult GetValues(FormCollection formCollection){ //一些代码 }
我正在对 GetValues() 进行 AJAX 调用。
我可能做错了什么?请让我知道我是否应该发布更多信息。
另一个问题:查询字符串中的“_:”是什么?它有一些随机数值。
谢谢。