Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Micah N #1
DataGrid in ASPX Slow to draw
Greetings,
I have been searching for some info on why the DataGrid control takes soooo
long to draw to the screen with large datasets.
I have a simple report that has a lot of searching capabilities for
returning a small dataset. But when I return all records, 10,000 ( with 20
fields ), the HTML takes over 30 seconds to draw to the screen.
This aspx page, is a DataGrid being bound to a DataSet. In its most
simplest form. Small datasets draw fast, sort fast, etc.
Now then, I have some other old ASP pages that I have converted to ASPX.
One scenerio is a page ( ASP ) that you can search for an Employee.
Returning all Employees ( ~4000 records ) takes ~2 sec. The ASP code is the
traditional get the RecordSet and loop through it creating the HTML table.
The exact same page using a DataList being bound to a DataSet takes ~10 sec
to draw to the screen.
I just want to know if other users have experienced this. Is there a way to
force a "Response.Flush" type action on these controls? Is it common
knowledge that we are giving up speed for programming convienience.
Or maybe my web server is out of tune? I do not know. I have no other
benchmarks.
thanx
Micah
Micah N Guest
-
ASPX page closing slowly with large datagrid
I have an issue with aspx page that displays a large datagrid. When i click a button and display the grid everyting works fine. when i click a... -
Datagrid render column headings. ASPX Page Model. Events
I have written a usercontrol which I drop onto aspx pages in my project, this usercontrol performs changes on the content of various aspx controls... -
Datagrid slow
Hello. I have a datagrid control on an asp.net web page with a sort command. I notice when the sort is ascending, the page renders very fast, but... -
Multiple DataGrid in an ASPX page
Hi, I have a requirement in which I need to display multiple datagrids in my ASPX page. I do not know how many of them until the page load. So I... -
Slow Draw McImagingLingo -- Optimization Help Needed
Hi All, I have some code that draws a bunch of circles into an image object and then assigns that object to a member. The image I was using... -
Alvin Bruney #2
Re: DataGrid in ASPX Slow to draw
that's about right for 10,000 rows. what are you complaining about?
if you want it any faster than this you need to page the grid.
"Micah N" <noreply@noreply.com> wrote in message
news:ecLqu2cXDHA.212@TK2MSFTNGP12.phx.gbl...soooo> Greetings,
>
> I have been searching for some info on why the DataGrid control takes20> long to draw to the screen with large datasets.
>
> I have a simple report that has a lot of searching capabilities for
> returning a small dataset. But when I return all records, 10,000 ( withthe> fields ), the HTML takes over 30 seconds to draw to the screen.
>
> This aspx page, is a DataGrid being bound to a DataSet. In its most
> simplest form. Small datasets draw fast, sort fast, etc.
>
> Now then, I have some other old ASP pages that I have converted to ASPX.
> One scenerio is a page ( ASP ) that you can search for an Employee.
> Returning all Employees ( ~4000 records ) takes ~2 sec. The ASP code issec> traditional get the RecordSet and loop through it creating the HTML table.
>
> The exact same page using a DataList being bound to a DataSet takes ~10to> to draw to the screen.
>
> I just want to know if other users have experienced this. Is there a way> force a "Response.Flush" type action on these controls? Is it common
> knowledge that we are giving up speed for programming convienience.
>
> Or maybe my web server is out of tune? I do not know. I have no other
> benchmarks.
>
> thanx
>
> Micah
>
>
Alvin Bruney Guest



Reply With Quote

