ASP.net更改服务器端的复选框ID

时间:2014-12-10 19:27:53

标签: c# html asp.net vb.net checkbox

我遇到的问题如下, 我有一个表,其中包含来自我的html表中加载的数据库的记录。 我想在每一行上添加一个复选框,其中包含数据库中的唯一ID号。

enter image description here

我要做的代码

<td class="auto-style172" style="vertical-align: top">
  <asp:CheckBox ID="checkbox1" runat="server" Text=" " ViewStateMode="Enabled" />
  <%checkbox1.ID = line.QuoteLine%>
</td>

此代码有效,但它不会更改第一个Checkbox ID。我怎么能让它工作呢! 谢谢!

这不起作用

<td class="auto-style172" style="vertical-align: top">
  <asp:CheckBox ID="<%line.QuoteLine%>" runat="server" Text=" " ViewStateMode="Enabled" />
</td>

0 个答案:

没有答案