views:

59

answers:

0

Im trying to create a datapager solution in asp.net like the one on the http://channel9.msdn.com/Posts/ website.

The solution should work like this:

  • Listview inside a updatepanel (partial rendered / updated) based on hashed pageindex from querystring
  • Support for navigation history points, so if someone goes to a detail page of one the items inside the listview and hit the back button he will return to the correct page in the listview
  • SEO friendly datapager with link rendered buttons so search engines are able to locate the detail pages of the items in the listview
  • Support for adjusting the pagesize would be nice

Im aware of the ASP.NET Routing system that can be used for this, but im unable to solve it with partial rendering of the listview.

Im greatful if someone can push me in the right direction with some hints or code (vb.net)