从数据库里查询出数据之后赋值给TextBox,然后对TextBox中的值进行修改之后,想要获取修改后的值要怎么做?以下是部分代码:public void ControlLoad()
    {
        int isAdd = Convert.ToInt32(Request.QueryString["isAdd"].ToString());
        if (isAdd.Equals(2))
        {
            int n_id = Convert.ToInt32(Request.QueryString["n_id"].ToString());
            BaseQuery query = new BaseQuery();
            string strSql = string.Format("select n_id,n_name,n_gut from t_novel where n_id={0}", n_id);            DataTable tabNovel = query.GetInfo(strSql, true);
            //为TextBox赋值
            this.txtNovelName.Text = tabNovel.Rows[0][1].ToString();
            this.txtGut.Text = tabNovel.Rows[0][2].ToString();
        }
    }
更新数据时,要获取修改后的TextBox的值就不行了,一直都是原来的值。