0

我知道在 VB.NET 中将下拉列表控件与数据库绑定的方法,但是如果我有两个下拉列表,我该怎么做呢?两个下拉列表都来自同一个数据库,但我想在网格视图上填充的是来自视图。有人可以给我一些源代码来编写或任何建议,不胜感激。感谢先进。

<asp:Label ID="Label1" runat="server" Text="Dealer Name:"></asp:Label>
      &nbsp;<asp:DropDownList ID="DropDownList1" runat="server">
        <asp:ListItem>Choose Dealer</asp:ListItem>
        <asp:ListItem>Chai</asp:ListItem>
        <asp:ListItem>Chang</asp:ListItem>
        <asp:ListItem>Aniseed</asp:ListItem>
    </asp:DropDownList>

<asp:Label ID="Label2" runat="server" Text="Recipe: "></asp:Label>
      &nbsp;<asp:DropDownList ID="DropDownList2" runat="server">
        <asp:ListItem>Choose Recipe</asp:ListItem>
        <asp:ListItem>Cake</asp:ListItem>
        <asp:ListItem>Pie</asp:ListItem>
        <asp:ListItem>spaghetti</asp:ListItem>
    </asp:DropDownList>

<asp:GridView ID="GridView1" runat="server">
    </asp:GridView>

I want for example when choose DropDownList1's dealer and DropDownList2 recipe, the data grid will display the data that I stored in database(Views).

4

0 回答 0