Hey,
This is my aspx code
<body >
<form id="_form1" runat="server" >
<div style=" width:100%; text-align:center;">
<div style="width:80%; margin:0 auto;" >
<asp:ContentPlaceHolder ID="_head" runat="server"></asp:ContentPlaceHolder>
</div>
</div>
</form>
</body>
in my ContentPlaceHolder I have
<div>
This is test...
</div>
When I run this application my html in IE8 renders as
<html>
...
<div>
<table>
<tr>
<td>
<div>
this is test
<div>
</td>
</tr>
</table>
<div>
...
</html>
now where is this table coming from and how do i change it ??
Thanks