与下拉列表绑定的数据网格

发布于 2024-09-19 04:59:43 字数 195 浏览 3 评论 0原文

当下拉列表 SelectedIndexChanged 事件发生时,如何动态更改数据网格的内容以从数据库中选择正确的数据?

更具体地说,我有一个苹果、橙子和珍珠的下拉列表。

当下拉列表从苹果变为橙色时,我希望数据网格像这样“select count(*) fromfruit where name='orange'”这样查询数据库并动态更新内容。

How do I dynamically change the content of a data grid to select the correct data from database when the drop down list SelectedIndexChanged event happens?

To be more specific, I have a dropdown list of apple, orange and pearl.

When the dropdown list changes from apple to orange, I want the datagrid to query the database like this "select count(*) from fruit where name='orange'" and dynamically update the content.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事随风而去 2024-09-26 04:59:43

尝试此操作并确保您的 DropDownList1 将 AutoPostBack 属性设置为 true

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        MyDatabaseDataContext mydb = new MyDatabaseDataContext();
        var x = from y in mydb.MyTable
                where y.myField == DropDownList1.SelectedItem.Text
                select y;
        GridView1.DataSource = x;
        GridView1.DataBind();
    }

Try this one also make surethat your DropDownList1 have the AutoPostBack property set to true

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        MyDatabaseDataContext mydb = new MyDatabaseDataContext();
        var x = from y in mydb.MyTable
                where y.myField == DropDownList1.SelectedItem.Text
                select y;
        GridView1.DataSource = x;
        GridView1.DataBind();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文