|
int iTmp = newint();
Response.Buffer = false;
Response.Write("<table width=100% border=1 bgcolor=#cc9966>");
for (iTmp = 0 ; iTmp <= 5000 ; iTmp ++)
{
Response.Write("<tr><td>" + Convert.ToString(iTmp) + "</td></tr>");
}
Response.Write("</table>");
================================================== ===
The above code renders all the table completely in one strock in the Internet Explorer. But the same table is rendered in slabs of 100 to 200 records at each time continuesly untill 5000 in FireFox. What would be the cause for the same.I want same effect in both the browsers
|