How do i get past this limitation in ie8. Microsoft confirms the limitation in the following sites:
http://msdn.microsoft.com/en-us/library/ms533583%28v=vs.85%29.aspx
http://msdn.microsoft.com/en-us/library/ms533581%28v=vs.85%29.aspx
I saw this forum post, but i still could not solve the issue: http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/a11758ab-66fe-4bea-adcc-9c50fe2d443b/
Can somebody edit this sample html to get a table larger than 1000 columns work in ie8 or at least confirm this is not possible:
<html>
<head>
<title></title>
<style type="text/css">
td div
{
width:20px;
height:20px;
border:solid 1px Black;
}
</style>
</head>
<body id="doc">
<table>
<tr>
<td><div></div></td>
<!-- over a thousand columns -->
</tr>
</table>
</body>
</html>
<!--ANOTHER EXAMPLE-->
<html>
<head>
</head>
<body>
<table>
<tr>
<td> </td>
<!-- over a thousand columns -->
</tr>
</table>
</body>
</html>