1

我有一个gridview,我想使用两个或多个单独的查询。换句话说,我不想有两个gridviews,每个gridviews 都有一个sqldatasource。

我怎样才能只有一个 gridview 并使用多个 SqlDataSources?例如,如果我有两个按钮。单击一个时使用一个数据源,单击另一个时使用另一个数据源,同时使用相同的gridview。

<div id ="Div1" runat ="server">
    <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" 
        CellPadding="4" ForeColor="#333333" 
        GridLines="None" Width="100%" AllowPaging="True" AllowSorting="True" 
            PageSize="20">
        <AlternatingRowStyle BackColor="White" />
        <Columns>
            <asp:BoundField DataField="ItemDesc" HeaderText="Item Description" 
                SortExpression="ItemDesc" />
            <asp:BoundField DataField="TypeDesc" HeaderText="Type" 
            SortExpression="TypeDesc" >
            <ItemStyle HorizontalAlign="Center" />
            </asp:BoundField>
            <asp:BoundField DataField="Total" HeaderText="Total" 
                SortExpression="Total" >
            <ItemStyle HorizontalAlign="Center" />
            </asp:BoundField>
        </Columns>
        <FooterStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
        <HeaderStyle BackColor="#990000" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#FFCC66" ForeColor="#333333" HorizontalAlign="Center" />
        <RowStyle BackColor="#FFFBD6" ForeColor="#333333" />
        <SelectedRowStyle BackColor="#FFCC66" Font-Bold="True" ForeColor="Navy" />
        <SortedAscendingCellStyle BackColor="#FDF5AC" />
        <SortedAscendingHeaderStyle BackColor="#4D0000" />
        <SortedDescendingCellStyle BackColor="#FCF6C0" />
        <SortedDescendingHeaderStyle BackColor="#820000" />
    </asp:GridView>
    <%--Query to get total --%>
    <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
        ConnectionString="<%$ ConnectionStrings:TLineConnectionString %>" 
        SelectCommand="SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 0 ORDER BY Total DESC">            
    </asp:SqlDataSource>
     <%--Query to get total Admin only--%>
     <asp:SqlDataSource ID="SqlDataSource2" runat="server" 
        ConnectionString="<%$ ConnectionStrings:LineConnectionString %>" 
        SelectCommand="SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 1 ORDER BY Total DESC">            
    </asp:SqlDataSource>
</div>
4

2 回答 2

2

在您的按钮单击事件中,您可以更改 SqlDataSource1 的选择命令。

//Button1 Click
SqlDataSource1.SelectCommand="SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 0 ORDER BY Total DESC";
    GridView1.DataSource = SqlDataSource1;
    GridView1.DataBind();

//Button2 Click
SqlDataSource1.SelectCommand="SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 1 ORDER BY Total DESC";
    GridView1.DataSource = SqlDataSource1;
    GridView1.DataBind();

编辑:使用下拉列表:

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    int selindex = DropDownList1.SelectedIndex;

    if (selindex == 0) //Option1 selected
    {
        SqlDataSource1.SelectCommand = "SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 0 ORDER BY Total DESC";
        GridView1.DataSource = SqlDataSource1;
        GridView1.DataBind();
    }

    else if (selindex == 1) //Option2 selected
    {
        SqlDataSource1.SelectCommand = "SELECT ItemDesc, TypeDesc, Total FROM vwTotal WHERE Admin = 1 ORDER BY Total DESC";
        GridView1.DataSource = SqlDataSource1;
        GridView1.DataBind();
    }
}

我假设您在下拉列表集合中添加了两个项目,例如 [Option1 和 Option2] 不要忘记制作 [DropDownList1.AutoPostBack="True"] 否则它不会触发 [SelectedIndexChanged] 事件。

于 2013-06-21T16:38:34.940 回答
1

在每个按钮的 Click 事件上,只需更改GridView1.DataSourceID为正确的 SqlDataSource 的 id 即可。之后可能需要GridView1.DataBind(),但我不确定,因为您使用的是 SqlDataSources。先尝试不使用,如果不起作用,则添加 DataBind。

于 2013-06-21T16:20:19.640 回答