递归地逐步遍历asp表(已用查询填充)

本文关键字:查询 填充 遍历 asp 递归 | 更新日期: 2023-09-27 18:14:30

基本上我有一个在asp页面中填充表格的查询,像这样:

<div class="span10">
  <table class="table table-bordered table-striped with-check" runat="server" id="noncompulsarymodules">
     <tbody>
      <tr>
         <td><asp:Label ID="Label3" runat="server"  Text= '<%# Eval("ModuleId")  %>' style="display:none;" /> </td>
         <td><asp:Label ID="Label1" runat="server" Text= '<%# Eval("noncompcode")  %>' /> </td>
         <td><asp:Label ID="Label2" runat="server" Text= '<%# Eval("noncomptitle") %>' /> </td>
         <td><asp:Label ID="Label4" runat="server" Text= '<%# Eval("moduleunits") %>' /> </td>
         <td class="center" style="overflow:hidden;">  <asp:Label ID="ModuleDescription" runat="server" Text='<%# Eval("noncompdesc") %>' /></td>
         <td><input type="checkbox" /></td>
      </tr>
    </tbody>
  </table>
</div>

基本上,我想做的是循环遍历表并将已检查的行放入查询中。

任何提示将非常感激!

递归地逐步遍历asp表(已用查询填充)

看看如何使用ASP。Net Gridview控件,带有复选框/templatefield列。

然后您将能够遍历gridviewws并获得选中的列。