在ItemDataBound事件里写
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
TextBox TB= (TextBox)e.Item.FindControl("txt_comment");
string str=str.Text;
}
(TextBox)e.Item.FindControl("txt_comment")
调试跟踪一下值的变化,然后看到底是哪里出了问题。
调试一下