I have several simple asp pages that display information in html tables. These pages display perfectly on Windows 2003 SE. The table information gets lost in Windows Mobile 5.0 which makes the data display all over the place. I wrote a quick html page that just has a single table and one row which also does not display on 5.0. Any help on getting html tables to display? -- Thanks.
<
html>
<body>
<table width="300" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100">column 1</td>
<td width="100">column 2</td>
<td width="100">column 3</td>
</tr>
</table>
</body>
</html>
Windows 5.0 displays
column1
column2
column3
Instead of:
column1 column2 column3