Firefox slow to render large no. of TD rows having HTML elements
Hi,
I am currently having an application that retrieves data of around 2000 rows from database.
These rows will be populated into a HTML table, where the application loops through the recordset and produces the TD cell and its elements repeatedly via loop the recordset, eg:
Code:
<TABLE>
<TR>
WHILE RECORDS EXIST {
<td>
<input value="<%=strEmpName%>">
<td>
}
</TR>
</TABLE>
I run this page via Firefox and realized the page takes around 1 minute to load, where the browser freezes until the data is loaded. However, in Chrome and IE, the loading time is alright. In Firefox, if I were to removed the Input element from cell and directly evaluate the expression's value, it will be fast.
Any idea how to resolve this issue for Firefox?