如何在表中插入值?

时间:2009-11-23 13:31:58

标签: sql-server vb.net

使用VB.Net

我是vb.net的新手,Am使用datagridview

的DataGridView

ID Name ComboboxColumn

001 Raja 
002 Ravi
003 Suresh
...,

“保存” - 按钮

在Datagridview中使用第三列中的combobox列

假设我从组合框中选择了值,那么我按下保存按钮意味着,Datagridview列值应保存在表格中。

如果未选择组合框中的值,则ID和名称不应保存在表格中。

如何针对此情况进行查询或编码?

需要vb.net代码帮助

2 个答案:

答案 0 :(得分:1)

http://quickstarts.asp.net/QuickStartV20/aspnet/

这里有许多VB中的样本以及C#

答案 1 :(得分:1)

循环遍历GridView的行

for(int i=0; i<= GridView1.Rows.Count-1; i++)
{
    string comboValue = ((DropdownList)GridView1.Rows[i].FindControl("Dropdownlist1")).SelectedValue;
    if(comboValue == "Yes")
    {

       //Save to database. Alternatively, you can load it in your business entity object and loop through the object collection and save it to the database individually.
    }

}