作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Controller 方法: public string Ne-6ren">
我在 ASP.NET MVC View 上实现分页,我想从 View 调用 Controller 中的方法。
View 中的代码:
<a href="<%= Url.Action("Search",
new { page = NextPage(Request["exactPage"])).ToString()}) %>">
public string NextPage(string currentPage)
{
return (int.Parse(currentPage) + 1).ToString();
}
最佳答案
如果您知道当前页面的编号,您是否可以只呈现页面值 = 当前页面加/减 1 的上一个和下一个链接的链接?您实际上并不需要 View 来询问 Controller 下一个/上一个页码是什么。该信息可以由 View 根据当前页面索引的值导出。
编辑:我建议 Controller 向 View 传递一个附加值,指示可用页面的总数。然后, View 可以将此值与当前页码进行比较,以确定是否显示下一个链接。
关于asp.net-mvc - ASP.NET MVC : calling a controller method from view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2473025/
我是一名优秀的程序员,十分优秀!