could i see that solution? (with both version + and concat)
I do think that it also depends how much and how big the strings are that you put into one concat call..
html += "test"
or
html = html.concat("test")
then i think the + would be faster.
But the strange thing is that you are saying that with small record size the concat is faster..