What's Faster...Repeater or HTML Table

N

NullQwerty

Hey folks,

I've got a DataGrid that has gotten a little out of control and really
slow because of its complexity (bunch of Template Columns too). For
performance reasons, I'm looking to change this.

I don't care about development time or even maintainability...at this
point I need to go for fastest performance.

Which of the following do you think would be quickest?:
a) Repeater
b) Using System.Web.UI.HtmlControls.HtmlTable server side and building
out the table (adding it to the Page's Controls)
c) Building the html of the table into a string (using StringBuilder)
server side, and adding that to the inside of a panel

Bear in mind there is sorting and paging too which now has to be
built. Also, this C# 1.1.

Thanks!
 
C

Cowboy \(Gregory A. Beamer\)

You will probably find all of them fairly similar in terms of perf. The
first option is the most maintainable.

StringBuilder might be a bit faster, as it is a dynamic array of characters,
but I would not opt for it first, as it is not maintainable.

I would also consider relooking at the DataGrid to make sure you cannot
filter the data before binding to accomplish what you are currently doing in
the Grid. It might speed things up considerably.
 
B

bruce barker

you need to determine if your performance problem is asp.net build the
page or the browser rendering the page.

for performance, turn off viewstate in the grid, and don't render more
than 10-15 rows.

-- bruce (sqlwork.com)
 
G

Guest

I've recently made similar descisions, and ended up building an HTML table
because all my rows we're not the same. I've also written paging code for it
as well. If all of your rows are the same, or you want to add additional
logic, then you may be better off with a repeater. If you do go down the
HTML route, I have a few pointers which will help.

If you want an event to fire from your table (e.g. you've got a link button
in a cell), then you need to create the table and the link buttons on every
load. You can't just build the rows and not bother on a post back if you're
not displaying them. To do this, I recommend that you have two functions - a
PrototypeTable() function and a PopulateTable() function.

In PrototypeTable to create the TableRows, TableCells and any Labels or
LinkButtons or other objects you'll need. You can set any event handlers
here as well. Set all the TableRows to invisible.

In PopulateTable, set the values of the labels and other objects, and set
the visibility.

The advantage of doing this is that you know what objects you have in your
program. You know you've always got ten TableRows called 'salesTableRow1' to
'salesTableRow10', and you can control the events. When you press the paging
controls, you get a postback which runs PrototypeTable(), sets the start
index for your data and then runs PopulateTable() which will set the correct
values in the labels.

As I said earlier, a repeater is almost certainly easier to work with, but
if you want to create tables then this could save you a lot of time
 

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

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,161
Latest member
GertrudeMa
Top