vote up 0 vote down star

I'm using datalist in my application and i'm binding datalist with lisq to sql

dim db=new linqdatacontext(); var products=from p in db.products select p; datalist.datasource=products; datalist.databind();

now how can i do paging in my datalist?

flag

77% accept rate

1 Answer

vote up 1 vote down check

Use keywords Take and Skip

var products=from p in db.products select p 
             Skip NUMER_TO_START Take NUMBER_TO_TAKE

Very simple, consider there are 1000 rows of results in p, and Skip 50 means you are not going take results #1-#50, and it will give you results from #51, Take is simply how many records you need.

link|flag
Thanks a lot. That's quite helpful. – Vicheanak Jul 2 at 4:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.