Optimizing paging in asp.net

  • Thread starter Thread starter suneelid2000
  • Start date Start date
S

suneelid2000

Actually i am really confused regarding paging activity

I want to implement paging in asp.net but i am not able to take out
the idea regarding
how to implement the concept for large databases where the tables r
containing 1000s of records

Problem is:I cannot save the dataset in session as it will b too
costly and all the time i cannot access the database as database
transasction require costly operations
can anyone plz tell me the solution regarding optimizing this problem
 
Actually i am really confused regarding paging activity

I want to implement paging in asp.net but i am not able to take out
the idea regarding
how to implement the concept for large databases where the tables r
containing 1000s of records

Problem is:I cannot save the dataset in session as it will b too
costly and all the time i cannot access the database as database
transasction require costly operations
can anyone plz tell me the solution regarding optimizing this problem

That's why one uses a SQL Server State server, where you can hold a dataset
in Session. And I don't see why you cannot use ADO.NET's transactional
features. It's just as costly having to go back to SQL Server, pulling
those records over again and again, because the user is going to or
returning to the page. This is also a question for a ASP.NET NG, which is on
msnews.micorsoft,com as well.
 

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

Back
Top