PagedDataSource with Typed Dataset - Is it Possible ?

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
 
R

Ryan Trudelle-Schwarz

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.
 
R

Robert

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top