I need to create this html string :
<table cellspacing="2" style="width:100%">
<tr height="30" nowrap="NOWRAP" width="200" bgcolor="#f4f4f4">
<th>Product</th>
<th>Category</th>
<th>Price</th>
</tr>
<tr>
<td>Replace</td>
<td>Replace</td>
<td>Replace</td>
</tr>
</table>
And I have a List of items that I intend to replace. I Was trying to do with StringBuilder but it wasn't working!
cellspacing="2"it wasn't working. And the "td's" has to be replaced by the items from a List.