PagedDataSource with Typed Dataset - Is it Possible ?

  • Thread starter Thread starter Fresh Air Rider
  • Start date Start date
F

Fresh Air Rider

Hi

There are plenty of examples on the internet of using the
PagedDataSource in conjunction with a dataset to implement paging
within the Repeater control.

Does anyone know if this is possible with a Typed Dataset ?

If so, a code snippet or link to relevant website would be much
appreciated.

I find Typed Datasets so much better than using ds.Tables[0].

Thanks in anticipation
David
 
Hi
There are plenty of examples on the internet of using the
PagedDataSource in conjunction with a dataset to implement paging
within the Repeater control.

Does anyone know if this is possible with a Typed Dataset ?

If so, a code snippet or link to relevant website would be much
appreciated.

I find Typed Datasets so much better than using ds.Tables[0].

Thanks in anticipation
David

Are you running into issues? You should be able to use it just as you would
any other dataset.
 
Maybe this fits this thread (going "second!"):

I use a PagedDataSource with a DataList, and the DefaultView of a typed Dataset. The result is, that the PagedDataSource will calculate the PageCount and all very well, and, if used in "foreach" returns a number of DataRowViews according to my chosen PageSize.
The DataList though will simply show all DataRows, ignoring my paging efforts very well.

From http://www.developmentnow.com/g/36_...ource_with_Typed_Dataset__Is_it_Possible_.htm

Posted via DevelopmentNow Groups
www.developmentnow.com/g
www.developmentnow.com
 
Back
Top