下面提到的是我在部分视图上使用MVC PageList进行的分页,并且我在部分视图上有一个提交按钮
控制器
var model1 = PrepareTestModel((int)_studAnsdal.Test_Id, Page);
ViewBag.TestId = TestId;
Page++;
return PartialView("_studentPartial", model1.OrderByDescending(v => v.Question_Id).ToPagedList(Page, 1));
查看
<input type="submit" Value="Submit Answer" id="abc">
<div class="pagedList">
@Html.PagedListPager(Model, page => Url.Action("TestPaging", "Student", new { page=ViewBag.page, TestId = ViewBag.TestId }), PagedListRenderOptions.EnableUnobtrusiveAjaxReplacing(new AjaxOptions { UpdateTargetId = "results", HttpMethod = "POST" }))
</div>
我想要做的是当用户点击提交时,我想将我的分页值转移到下一页,这是一个增量,但我没有完成它,因为页面值是使用查询字符串传递的任何帮助表示赞赏< / p>