I learned that by trying to use the tablesorter plug in from jquery the table needs to use the < thead> and
< tbody> tags. I am using an html table, and I use the runat="server" attribute because I need to bind data to the table on the server side. but by using the runat= server attribute the code is rendered in a different way..instead of the view source looking like this which is what is in my markup view :
<table id="Table">
<thead>
<tr> <th>1st</th> <th>2nd</th> <th>3rd</th> </tr>
</thead>
<tbody>
<tr><td>1st value</td><td>2nd value</td><td>3rd value</td></tr>
<tr><td>1st value</td><td>2nd value</td><td>3rd value< /td></tr>
<tr><td>1st value</td><td>2nd value</td><td>3rd value</td></tr>
<tr><td>1st value</td><td>2nd value</td><td>3rd value</td></tr>
</tbody>
</table>
it looks like that but without the < thead> and < tbody> tags.. which will make the table sorter not work? can someone help me fix this? " .NET 3.5 sp1 is the version I am using"