MVC 参数传递问题
View中:<formmehod="post"action="ChangePage"><div><inputtype="submit"value="转到"name="pa...
View中:<form mehod="post" action ="ChangePage"><div><input type="submit" value ="转到" name ="pages"/><%:Html.TextBox ("page") %> </div></form>
Controller中:
public ActionResult ChangePage()
{
string temp = Request.Form["page"];
PageNo = int.Parse (temp);
return RedirectToAction("MessageBoard", "Pages");
}
在这个表单中,我希望把TextBox中的参数传递到方法ChangePage中,但是当我输入数字,执行按下按钮后,提示Request.Form["page"]值为空,为什么? 展开
Controller中:
public ActionResult ChangePage()
{
string temp = Request.Form["page"];
PageNo = int.Parse (temp);
return RedirectToAction("MessageBoard", "Pages");
}
在这个表单中,我希望把TextBox中的参数传递到方法ChangePage中,但是当我输入数字,执行按下按钮后,提示Request.Form["page"]值为空,为什么? 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询