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:
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.Code:<TABLE> <TR> WHILE RECORDS EXIST { <td> <input value="<%=strEmpName%>"> <td> } </TR> </TABLE>
Any idea how to resolve this issue for Firefox?



Reply With Quote

Bookmarks