我有像TextBox,DropDownList和页面上的按钮这样的控件。
当我向TextBox,DropDown输入数据时,如果我点击按钮,那么它应该分别添加到GridView单元格的TextBox和DropDownList。
示例,当我输入数据到文本框并点击保存按钮时,我需要将它显示给GridView。
没有来自数据库的数据。
我可以知道怎么做吗?任何示例代码供参考?请建议,谢谢
答案 0 :(得分:0)
使用另一个按钮将数据插入数据库,并在点击事件上写下代码。
protected void Button2_Click(object sender, EventArgs e)
{
foreach (GridViewRow oItem in GridView1.Rows)
{
string str1 = oItem.Cells[0].Text;
string str2 = oItem.Cells[1].Text;
string str3 = oItem.Cells[2].Text;
insertData(str1, str2, str3);
}
}
public void insertData(string str1,string str2,string str3)
{
SqlConnection cn = new SqlConnection("Your Connection strig");
string sql = "insert into tbl1 (column1,column2,column3) values ('" + str1 + "','" + str2 + "','" + str3 + "')";
SqlCommand cmd = new SqlCommand(sql, cn);
cmd.ExecuteNonQuery();
}
由于