网格视图和详细信息页面
我有一个包含职位搜索的页面,职位搜索的结果绑定到网格视图。 Gridview 有超链接 列,当用户单击该列时,它会转到另一个页面,其中显示作业的完整详细信息
我的要求是我必须在显示作业详细信息的页面添加上一页和旁边,
例如
转到 http://forums.asp.net/15.aspx/1?Getting+Started 然后单击任意行,它会进入主题,并且该页面还有“下一个线程”和“上一个线程”选项
I have a page which has job search , up on job search the results are bound to the gridview. The Gridview has hyperlink
Column, when user clicks on the column it goes to another page which displays the complete details of the job
My requirement is I have to add prev and next to the page which shows the details of the job
for example
go to http://forums.asp.net/15.aspx/1?Getting+Started
and click on any row and it takes to the topic and also the page has "next thread" and "prev thread" option
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将搜索结果保存在会话中,并将查询字符串中的所选项目索引传递到详细信息页面。在详细信息页面上,您只需从已保存的搜索结果中按索引获取项目并将其用于显示详细信息。
You may save search results in Session and pass selected item index in query string to details page. On the details page you just get item by index from already saved search results and use it for show details info.