CheckBoxList兩列并排編譯為表格顯示具體實現_.Net教程

      編輯Tag賺U幣

      推薦:GridView中動態設置CommandField是否可用或可見的小例子
      GridView中動態設置CommandField是否可用或可見的小例子,需要的朋友可以參考一下

      復制代碼 代碼如下:www.wf0088.com

      <asp:CheckBoxList ID="DDLGroups" runat="server" RepeatLayout="Table" RepeatColumns="2" RepeatDirection="Horizontal" style="border-collapse:collapse; line-height:18px;margin-left:2px;">
      </asp:CheckBoxList>

      復制代碼 代碼如下:www.wf0088.com

      <style type="text/css">
      #DDLGroups{border-collapse:collapse; line-height:18px}
      #DDLGroups td{width:300px; border:1px solid #F0F8FF;padding-left:5px}
      </style>

      獲取所選值:
      復制代碼 代碼如下:www.wf0088.com

      //獲取聯系人組
      $("#DDLGroups tbody tr td input:checkbox:checked").each(function () {
      alert($(this).parent().find("label").html())
      });

      分享:ASP.NET頁面間數據傳遞的幾種方法介紹
      在ASP.NET中,頁面間數據傳遞的方法有很多。下面為大家總結一下,頁面間數據傳遞的方法,來看作者的分析。

      來源:模板無憂//所屬分類:.Net教程/更新時間:2013-05-11
      相關.Net教程