如何使用Asp.net将值表单数据库弹出到组合框中

时间:2011-05-07 13:24:49

标签: asp.net visual-studio

我想将学生列表提取到组合框中,并在组合框选择的基础上将其相关记录提取到另一个网格中。请指导我完成这项任务。

1 个答案:

答案 0 :(得分:1)

您可以将DropDownList绑定到下面

DropDownList1.DataSource=GetStudentDataSet();
DropDownList1.DataTextField="StudentName";
DropDownList1.DataValueField="StudentID";
DropDownList1.DataBind();

将GridView绑定代码放在DropDownList的选定更改事件上,如下所示

void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        //Fecth selected student id 
         int studentId = Convert.ToInt32(DropDownList1.SelectedValue);
        //Bind Grdivew
    }