|
Posted by shapper on November 18, 2007, 7:23 pm
Please log in for more thread options
Hello,
I am creating a table which holds data.
I am using ASP.NET and when the table is created it renders the table
cells as follows:
<td>
<span>
Tag 01
</span>
</td>
The value is rendered inside a <span> tag before added to the table
cell.
I know how to remove this.
My question is: is this normal do to or usually the html should look
as follows:
<td>
Tag 01
</td>
Thanks,
Miguel
|