On asp:Table Control how do we create a thead ?
- by balexandre
from MSDN article on the subject we can see that we create a TableHeaderRowthat conatins TableHeaderCells.
but they add the table header like this:
myTable.Row.AddAt(0, headerRow);
witch outputs the HTML:
<table id="Table1" ... >
<tr>
<th scope="column" abbr="Col 1 Head">Column 1 Header</th>
<th…