protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
    {
       string titname = ((TextBox)GridView1.Rows[e.RowIndex].FindControl("TextBoxName")).Text;
        
        Response.Write(titname);
         
    }我用的是模板绑定的数据,编辑模板中有TextBox,他的id是TextBoxName,在编辑状态下我往textbox中输入一个值,单击更新后还是原来的值,我输入的新值不显示,是什么原因呀,请大家指点,谢谢了!!