显示来自 SQL select 语句的动态网格视图

Showing a dynamic grid view from SQL select statement

在我的 ASP.Net 网络表单上,我显示来自 SQL 服务器的 table。但是,我想做的是为网页的用户提供选中某些框的能力,并且在我刷新页面后只显示那些特定的列。

这是aspx html:

<div style="width: 1250px; height: 300px; overflow: auto">
    <asp:GridView ID="GridView1" HeaderStyle-BackColor="Black" HeaderStyle-ForeColor="Silver" RowStyle-BackColor="#EEEEEE" AlternatingRowStyle-BackColor="White" 
        AlternatingRowStyle-ForeColor="#000" runat="server" AutoGenerateColumns ="false" AllowPaging="false" OnPageIndexChanging="OnPageIndexChanging" AllowSorting="True">
        <Columns>
            <asp:BoundField DataField ="WeekEndingDate" HeaderText="Week Ending Date" ItemStyle-Width="150px" dataformatstring="{0:MM-dd-yyyy}" />
            <asp:BoundField DataField ="Week_Number" HeaderText="Week Number" ItemStyle-Width="150px" />
            <asp:BoundField DataField ="Class" HeaderText="Class" ItemStyle-Width="150px" />
            <asp:BoundField DataField ="Animal" HeaderText="Animal" ItemStyle-Width="150px" />
            <asp:BoundField DataField ="North_Island" HeaderText="North Island" ItemStyle-Width="150px" DataFormatString="{0:F2}" />
            <asp:BoundField DataField ="South_Island" HeaderText="South Island" ItemStyle-Width="150px" DataFormatString="{0:F2}" />
            <asp:BoundField DataField ="New_Zealand" HeaderText="New Zealand" ItemStyle-Width="150px" DataFormatString="{0:F2}" />
        </Columns>
    </asp:GridView>
</div>

绑定网格方法如下:

private void BindGrid()
    {
        string strConnString = "server= N-1077; Trusted_Connection=yes; database=Slaughter; connection timeout=30";
        using (SqlConnection con = new SqlConnection(strConnString))
        {
            using (SqlCommand cmd = new SqlCommand("SELECT CONVERT(date, Week_Ending_Date) AS WeekEndingDate," + 
                "Week_Number, Class, North_Island = CAST(North_Island as float), South_Island = CAST(South_Island as float)," +
                "(CAST(North_Island as float)) + (CAST(South_Island as float)) AS New_Zealand," +
                "Animal = (CASE WHEN Class = 'Sheep' OR Class = 'Lamb' THEN 'Ovine' WHEN Class = 'Calf' THEN 'Calf' ELSE 'Bovine' END)" +
                "FROM Slaughter ORDER BY WeekEndingDate DESC"))
            {
                using (SqlDataAdapter sda = new SqlDataAdapter())
                {
                    cmd.Connection = con;
                    sda.SelectCommand = cmd;
                    using (DataTable dt = new DataTable())
                    {
                        sda.Fill(dt);
                        GridView1.DataSource = dt;
                        GridView1.DataBind();
                    }
                }
            }
        }
    }

是否有一种简单的方法可以 select 特定的列并仅显示这些列?也就是说,如果他们只对 week_number、class 和 south_island 感兴趣,它只会显示这三列的数据吗?我不介意基于用户输入构建 SQL 查询,但这是我更改绑定字段数据字段以反映在该查询中 selected 的那些列的方式。

这是使用 Visible 属性 的一种方法。

protected void RefreshSQLDisplay(object sender, EventArgs e)
{
    foreach (BoundField col in GridView1.Columns)
    {
        if (col.DataField == "WeekEndingDate")
        {
            col.Visible = false;
            break;
        }
    }
}

缺点是列仍然在内存中,sql 查询将检索数据。因此,出于性能原因,最好更改 sql 查询。

更新:我按照你的要求编辑了代码