I have this html code
<table id="rounded" runat=server style="position:relative;left:-45px;" >
<thead>
<tr>
<th scope="col" class="rounded-company">status</th>
<th scope="col" class="rounded-q1">date</th>
<th scope="col" class="rounded-q1">price</th>
<th scope="col" class="rounded-q1">quantity</th>
<th scope="col" class="rounded-q1">option1</th>
<th scope="col" class="rounded-q1">option2</th>
<th scope="col" class="rounded-q1">paync</th>
<th scope="col" class="rounded-q1">product_id</th>
<th scope="col" class="rounded-q1">sell number</th>
<th scope="col" class="rounded-q4"> name</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="9" class="rounded-foot-left" dir=rtl ><em></em></td>
<td class="rounded-foot-right"> </td>
</tr>
</tfoot>
</table>
In serer side I want to add this string to the table rows
rows="<tr><td>" & reader4.GetValue(9) & "</td>" & "<td>" & reader4.GetValue(8) & "</td>" & "<td>" & reader4.GetValue(7) & "</td>" & _
"<td>" & reader4.GetValue(3) & "</td>" & "<td>" & tempoption & "</td>" & "<td>" & tempoption2 & "</td>" & _
"<td>" & reader4.GetValue(6) & "</td>" & "<td>" & reader4.GetValue(2) & "</td>" & "<td>" & reader4.GetValue(1) & "</td>" & "<td>" & reader4.GetValue(0) & "</td>" & "</tr>"
In javascript it very sipmle
$("#rounded").html( $("#rounded").html()+str);
but asp.net doesn't support InnerHTML for tables
What is the right approach for this task?