473,394 Members | 1,699 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

What's Faster...Repeater or HTML Table

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!

Jul 27 '07 #1
3 3878
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.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
"NullQwerty" <Nu********@gmail.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
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!

Jul 27 '07 #2
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)

NullQwerty wrote:
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!
Jul 27 '07 #3
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

"Cowboy (Gregory A. Beamer)" wrote:
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.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com
Co-author: Microsoft Expression Web Bible (upcoming)

************************************************
Think outside the box!
************************************************
"NullQwerty" <Nu********@gmail.comwrote in message
news:11**********************@k79g2000hse.googlegr oups.com...
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!


Jul 28 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Mark | last post by:
I am trying to use a Pagable Repeater with checkboxes in ASP.Net, I cannot seem to associate the checkbox with a particular database record so I lose the checked state from page-to-page. Below is...
0
by: Rob Meade | last post by:
Hi all, Ok - I need to plonk a repeater in my form which is using a template (table and series of web user controls)...as a result I have something like this (short version) <table> <tr>...
3
by: Mark | last post by:
I am looking for an example of using checkboxes in a repeater control where the checkbox state is persisted from page to page. Thank you, Mark
4
by: bob garbados | last post by:
I need to create a page that displays all of the products from a table and allows for add to cart functionality. My thoughts were to display all of the products in table rows using a repeater. ...
1
by: ratnakarp | last post by:
Hi, I have a search text box. The user enters the value in the text box and click on enter button. In code behind on button click i'm writing the code to get the values from the database and...
0
by: Keith | last post by:
I have a repeater control that contains a HeaderTemplate and an ItemTemplate. Each item contains a checkbox with an ID of chkReconciled, and the header contains a single checkbox with an ID of...
0
by: Keith | last post by:
I have a repeater control that contains a HeaderTemplate and an ItemTemplate. Each item contains a checkbox with an ID of chkReconciled, and the header contains a single checkbox with an ID of...
0
by: Eugene Anthony | last post by:
The problem with my coding is that despite removing the records stored in the array list, the rptPages repeater control is still visible. The rptPages repeater control displayes the navigation...
0
by: Eugene Anthony | last post by:
BlogListingAll.aspx ------------------- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="user_BlogListingAll.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.