Ztv.mdf という名前のデータベースを作成し、[Name]、[fullname]、[Id]、[dept] を含む table1 としてテーブルを作成し、dept のドロップダウン リスト 1 を作成しました。グリッドビューは出力を表示します.それは正常に動作します.しかし、名前のドロップダウンリストがもう1つ必要です.私の目的は、ユーザーがドロップダウンリスト1とドロップダウンリスト2の両方から値を選択すると、グリッドビューを制御することです.どうすればよいですか?
1つのドロップダウンリストとグリッドビューの私のコードは次のとおりです:
<form id="form1" runat="server">
<div>
<asp:DropDownList ID="ddlSearchCriteria" runat="server"
DataSourceID="SqlDataSource1" DataTextField="depat" DataValueField="Id"
AutoPostBack="True">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:ztvConnectionString %>"
SelectCommand="SELECT [Id], [depat] FROM [Table1]"></asp:SqlDataSource>
<br />
<asp:GridView ID="gvSearchResults" runat="server" AutoGenerateColumns="False"
DataKeyNames="Id" DataSourceID="SqlDataSource2" CellPadding="4"
ForeColor="#333333" GridLines="None" style="margin-left: 155px">
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="Name" HeaderText="Name" SortExpression="Name" />
<asp:BoundField DataField="Id" HeaderText="Id" InsertVisible="False"
ReadOnly="True" SortExpression="Id" />
<asp:BoundField DataField="fullname" HeaderText="fullname"
SortExpression="fullname" />
</Columns>
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource2" runat="server"
ConnectionString="<%$ ConnectionStrings:ztvConnectionString %>"
SelectCommand="SELECT [Name], [fullname], [Id] FROM [Table1] WHERE ([Id] = @Id)">
<SelectParameters>
<asp:ControlParameter ControlID="ddlSearchCriteria" Name="Id"
PropertyName="SelectedValue" Type="Int32" />
</SelectParameters>
</asp:SqlDataSource>
<br />
<br />
<br />
</div>
</form>