Table. Need help with creating it. Thank You.

S

shapper

Hello,

I am creating a table at runtime and I am having a problem:
I need the tbody tag to runat server and define its id:

<tbody id="itemContainer" runat="server"></tbody>

How can I do this?

The table code I need should be as follows:
<table>
<thead>
<tr>
<th>Title</th>
<th>City</th>
</tr>
</thead>
<tbody id="itemContainer" runat="server"></tbody>
<tfoot>
<tr>
<th>Footer</th>
</tr>
</tfoot>
</table>

Thank You,
Miguel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top