我是C#的新手。我正在尝试将一个Thead部分添加到一个checkboxlist生成的表中,这样我就可以使用https://datatables.net/中的Datatables插件来格式化My table。还有一种方法可以将其他列添加到它生成的表中吗?
<form id="form1" runat="server">
<div id="alertMessage" runat="server"></div>
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" Visible="True" PrintMode="Pdf" GroupTreeStyle-ShowLines="False" ReuseParameterValuesOnRefresh="False" HasRefreshButton="True" />
<asp:CheckBoxList ID="CheckBoxList1" runat="server" CssClass="table table-bordered" DataValueField="order_no" DataTextField="order_no" AppendDataBoundItems="false" DataSourceID="OrderQuery" >
<asp:ListItem></asp:ListItem>
</asp:CheckBoxList>
<asp:SqlDataSource ID="OrderQuery" runat="server"
ConnectionString="<%$ ConnectionStrings:002ConnectionString %>"
SelectCommand="spOrderDetailsPrint" SelectCommandType="StoredProcedure"></asp:SqlDataSource>
<asp:Button ID="Button1" runat="server" Text="Print" OnClick="Button_1Click" />
<div>
</div>
</form>
答案 0 :(得分:0)
基本上你要问两个问题: 如何在视图中渲染THEAD以及如何添加更多列。
在这一点上,我强烈建议您使用GridView
,因为您需要在表格中添加更多列。您可以在第一列中显示复选框,在第二列中显示文本,在其他列中显示更多信息。
A GridView
also allows you to enable the rendering of a THEAD section very easy所以你可以使用你的数据表组件,虽然GridView
已经有相同的机会。主要区别在于,它只会通过回发更改页面,并且不会允许您以交互方式更改所看到的行数。