我有這樣的HTML代碼添加行HTML表
<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>
在塞雷爾語身邊,我想這個字符串添加到錶行
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>"
在javascript中很sipmle
$("#rounded").html($("#rounded").html()+str);
但asp.net不支持InnerHTML表格
這項任務的正確方法是什麼?
嗨Oded,感謝重播 - 我需要代碼在服務器端(VB)和您的代碼是javascript – baaroz
@baaroz - 不,我的代碼是C#。而且您從未將VB.NET指定爲語言 - 下次請正確標記。用VB.NET例子回答更新。 – Oded