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!
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!