Hi everybody,
I want to get rid of all the attributes that are being entered into the table tag of a datagrid control so that i am left with:
Code:
<table class="address">
Also how do i make the headings use the <th> tag
my aim is to have source that looks like:
Code:
<table class="address">
<tr>
<th>heading</th>
</tr>
<tr>
<td>table data</td>
</tr>
</table>
Cheers folks