根据DropDownList选择进行ASP.NET GridView更改

时间:2014-07-24 22:47:37

标签: asp.net sql gridview sqldatasource

我已经尝试了一千种方法来完成这项工作而且我无法做到。我有一个DropDownList绑定到.mdf数据库列中的数据。我下面还有一个GridView,它使用查询生成器绑定到同一数据库中4个不同表的列。

我知道这样做你必须在查询字符串中添加一个WHERE子句,看起来像这样 - WHERE([column] = @column) - 然后你必须在HTML代码中放入一个SelectParameters。但我不知道如何正确地写它。

我在浏览器中运行页面时遇到错误。错误如"列不明确","列不存在","必须声明标量变量@ column"等等我认为它可能有什么东西给事实上,其中三个表有一个名为description的列,其中两个有别名。

这是HTML:

<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="ByCategory.aspx.vb" Inherits="_Default" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:Label ID="Label2" runat="server" Text="Select a category:"></asp:Label>
<br />
<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource2" DataTextField="description" DataValueField="description"></asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT [description] FROM [category]"></asp:SqlDataSource>
&nbsp;<asp:Button ID="btnGo" runat="server" Text="Go" />
&nbsp;
<br />
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4" DataSourceID="SqlDataSource3" ForeColor="#333333" GridLines="None" Visible="False">
    <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
    <Columns>
        <asp:BoundField DataField="whenCreated" HeaderText="whenCreated" SortExpression="whenCreated" />
        <asp:BoundField DataField="description" HeaderText="description" SortExpression="description" />
        <asp:BoundField DataField="firstName" HeaderText="firstName" SortExpression="firstName" />
        <asp:BoundField DataField="lastName" HeaderText="lastName" SortExpression="lastName" />
        <asp:BoundField DataField="Expr1" HeaderText="Expr1" SortExpression="Expr1" />
        <asp:BoundField DataField="Expr2" HeaderText="Expr2" SortExpression="Expr2" />
    </Columns>
    <EditRowStyle BackColor="#999999" />
    <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <HeaderStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
    <PagerStyle BackColor="#284775" ForeColor="White" HorizontalAlign="Center" />
    <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
    <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
    <SortedAscendingCellStyle BackColor="#E9E7E2" />
    <SortedAscendingHeaderStyle BackColor="#506C8C" />
    <SortedDescendingCellStyle BackColor="#FFFDF8" />
    <SortedDescendingHeaderStyle BackColor="#6F8DAE" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT bugEntry.whenCreated, bugEntry.description, employee.firstName, employee.lastName, category.description AS Expr1, status.description AS Expr2 FROM bugEntry INNER JOIN category ON bugEntry.cat_id = category.cat_id INNER JOIN status ON bugEntry.status_id = status.status_id CROSS JOIN employee">


</asp:SqlDataSource>
</asp:Content>

2 个答案:

答案 0 :(得分:0)

首先确保您的下拉框的AutoPostBackonselectedindexchangedDataValueField属性设置如下:

  

&lt;'asp:DropDownList ID =“DropDownList1”runat =“server”DataSourceID =“SqlDataSource2”DataTextField =“description” AutoPostBack =“True”                DataValueField =“ItemNo” DataTextField =“ItemName” onselectedindexchanged =“DropDownList1_SelectedIndexChanged”&gt;

然后设置ObjectDataSource,使用DropDownList中的Select Parameter作为其GridView。将ObjectDataSource绑定到DropDownList1_SelectedIndexChanged

最后在您的 protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { ObjectDataSource1.DataBind(); GridView1.DataBind(); } 方法中执行以下操作:

{{1}}

它只需要调用ObjectDataSource1或GridView1,暂时不记得。

答案 1 :(得分:0)

我也有这个场景,这就是我解决的问题

我借助SqlDataSource向导将我的Gridview与数据源绑定并构建查询 配置数据源时使用第一个选项&#34;指定自定义SQl语句或存储过程&#34;因为你正在使用多个表 现在单击下一步并使用查询构建器 在窗口的顶部第一个窗格上单击鼠标右键并添加表格 根据您的要求从表中选择列

现在在查询窗格中,在最后的新行中写下

WHERE([column] = @ column)

现在好了,然后点击下一步

将出现新窗口 选择参数源 和控制ID点击下一步,你很高兴

希望这会有所帮助