我有一个GridView
我在每列的项目模板中放置文本框的地方。我想在单击按钮时将我将在文本框中输入的值存储到数据库中。
protected void Button1_Click(object sender, EventArgs e)
{
GridView1.Visible = true;
DataTable dt = new DataTable();
DataRow row = dt.NewRow();
for (int i = 0; i < GridView1.Rows.Count; i++)
{
string UserID = GridView1.Rows[i].Cells[1].Text;
string q="insert into details (name) values('"+UserID+"')";
SqlCommand cmd = new SqlCommand(q, con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dt);
}
}
问题是当我运行页面时文本框甚至不可见。