如何在asp文本框中为网格视图赋值是一个独立的对象,而不是网格视图的一部分。在按钮单击事件上,所有文本框值都作为新行分配给网格视图。我想知道如何做到这一点,我搜索了很多,但找不到正确的方法。
DataTable dt = new DataTable();
DataRow dr = dt.NewRow();
if (e.CommandName.CompareTo("ADD") == 0)
{
dt.Columns.Add("id", System.Type.GetType("System.String"));
dt.Columns.Add("Name", System.Type.GetType("System.String"));
dt.Columns.Add("UnitPrice", System.Type.GetType("System.String"));
dt.Columns.Add("Price", System.Type.GetType("System.String"));
dt.Columns.Add("Quantity", System.Type.GetType("System.String"));
dr["Id"] = GridView1.Rows[Convert.ToInt16(e.CommandArgument)].Cells[0].Text;//item id
dr["Name"] = GridView1.Rows[Convert.ToInt16(e.CommandArgument)].Cells[1].Text;//item name
dr["UnitPrice"] = GridView1.Rows[Convert.ToInt16(e.CommandArgument)].Cells[2].Text;//iten unit price
dr["Price"] = "mkj";
dr["Quantity"] = "mkj";
dt.Rows.Add(dr);
GridView2.DataSource = dt;
GridView2.DataBind();
}
发布于 2015-04-08 06:07:58
你可以试试这个
Gridview.Rows[1].Cells[0].Text = TextBox1.Text;
https://stackoverflow.com/questions/29506900
复制相似问题