如何将组合框中的数据添加到gridview控件

时间:2014-12-12 11:35:54

标签: asp.net gridview combobox bind

我想将所选产品从组合框添加到网格视图。

我已经通过在列表框中添加它来尝试它并且确实有效但是要更灵活,我想尝试网格视图

protected void Button1_Click(object sender, EventArgs e) 
{ 
    lbl.Text = Billing.SelectedItem.Text; 
    Get.Items.Add(Billing.SelectedItem.Text); 
    Billing.Focus(); 
}

我已经使用此代码将其添加到列表框中。现在为了更灵活,我希望它与gridview一起使用。

0 个答案:

没有答案