我遇到的问题如下, 我有一个表,其中包含来自我的html表中加载的数据库的记录。 我想在每一行上添加一个复选框,其中包含数据库中的唯一ID号。
我要做的代码
<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>