在BoundColumn里动态的添加了TextBox,但要获取该TextBox的值时,却找不到该TextBox动态添加TextBox  dg_dykhb.Cells[i].Controls.Add(txt_res);获取该TextBox: txt_res=dg_dykhb.Cells[i].FindControl("txt_res");                txt_res=(TextBox)dg_dykhb.Cells[i].Controls[0];                以上两种方法都不能找到textbox,执行语句后txt_res都为null请问各位在BoundColumn里面动态添加的TextBox,如何去获取它的值?