ASP リピーター アイテムのホルダーとして機能する HTML テーブルの列の幅を調整しようとしています。
<asp:Repeater id="viewproduct" runat="server">
<HeaderTemplate>
<table id="grid">
<thead >
<tr>
<th width="20px" data-field="check"></th>
<th data-field="level">Status</th>
<th data-field="Class">Username</th>
</tr>
</thead>
<tbody>``
</HeaderTemplate>
<ItemTemplate>
<tr>
<td width="20px"><asp:CheckBox ID="CheckApprove" runat="server" Width="20px" /></td>
<td><asp:Label ID="status" runat="server"
Text='<%#DataBinder.Eval(Container.DataItem, "Status")%>'></asp:Label></td>
<td><asp:Label ID="name" runat="server"
Text='<%#DataBinder.Eval(Container.DataItem, "name")%>'></asp:Label></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</tbody>
</table>
</FooterTemplate>
</asp:Repeater>
ヘッダーは幅に従いますが、コンテンツはそうではありません。なぜ?現在、私のテーブルは次のようになっています。