使用Textbox和Textchanged进行Gridview

时间:2017-11-15 05:13:42

标签: c# asp.net

我被添加到RowDataBound里面的gridview文本框中,并为每个文本框添加了TextChanged。当我在文本框中写入一些文本时,触发gridview中所有文本框的工作。如何解决这个问题?带有文本框的列,名为CommentTS。My gridview inside another gridview

编码如何将文本框添加到gridview。

TextBox tb = new TextBox();
tb.ID = e.Row.Cells[0].Text;
tb.CssClass = "form-control";
tb.TextMode = TextBoxMode.MultiLine;
tb.Text = HttpUtility.HtmlDecode(e.Row.Cells[i].Text).ToString();
tb.TextChanged += new EventHandler(TextCommentUpdate);
tb.AutoPostBack = true;
e.Row.Cells[i].Controls.Add(tb);

0 个答案:

没有答案