Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, In my web application,I am using gridview to show data in page load ut when I bind the data in gridview
GridView1.DataSource = ds.Tables[0];
this.GridView1.DataBind();
in this line its take much time and some time session will be out but grid not bind because i have more then 90,0000 record, and the grid view i want to use update and delete button which is very slow thats why i want to use flex grid, but i dont know how to use in asp.net4.0, and which refrence and component use and which class and namespace i use,
Posted
Comments
Thanks7872 4-May-13 5:58am    
First of all,it doesnt make sense to display 900000 records at a time.Do you think any of the user will go through all the records or you can display all the records in the single page(no paging)? Try to find out which type of data user wants or filter data in some manner which is expected by the user.
You should apply paging to GridView.
rajan_gupta 6-May-13 1:02am    
I need to display all the data in a single page
Showing 9,00,000 records in one Page!!! Who is going to read that on one page ?
And DataSet has some limitations on number of rows to retrieve. Please think of it once and then decide what to do.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900