看来你是需要使用ajax了
1.如果您是提交给页面A后在跳转到form页面,直接把要跳转的地址也通过Action参数传递个页面a就行,再调整回来 2.如果是不需要跳转页面的刷新数据,只能使用ajax
用js,如果是等待结果刷新,可以考虑用定时器setInterval请求服务器,取得结果后刷新window.loaciton.reload()
public ActionResult a(string pwd)
{
return View("b");
}
public ActionResult b(string pwd)
{
return View();
}
form页面html
<h2>我是B页面</h2>
<form action="a">
<input name="age"/>
<button>提交</button>
</form>
采用ajax请求,原本B页面请求A页面后返回到B页面,请求完毕后写一个跳转到B页面就行了,
post提交