Possible to paginate/sort datalist in ASP.NET 2.0?

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

Is it possible to paginate or sort a datalist in ASP.NET 2.0 easily (as it
is with the amazing datagrid)?

Thanks!
 
VB Programmer,

It's easier than ever. Use a GridView. It gives you the option to check a
box to make the grid sortable and voila!

If you HAVE to use a datalist then you'll need to use a DataView and bind to
that in order to sort it.

--
Sincerely,

S. Justin Gengo, MCP
Web Developer / Programmer

www.aboutfortunate.com

"Out of chaos comes order."
Nietzsche
 
Back
Top