我有gridview
并在TextBox
事件中创建了动态RowDataBound
TextBox txtbox = new TextBox();
txtbox.ID = "txt1";
txtControl.Text = "SoomeValue";
当我尝试将button click
上的值检索为
TextBox textboxValue = (TextBox)gv.Rows[rowIndex].Cells[cellIndex].FindControl("txt1");
string value = textboxValue.Text;
除了null
value
答案 0 :(得分:1)
答案是否定的。您无法像尝试一样从GridView中检索动态添加的TextBox。
如果您使用GridView,则需要在设计时的模板列中添加文本框。