protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            ValidatUserLogin();
            BindGV();
        }
    } protected void dgClickers_RowUpdating1(object sender, GridViewUpdateEventArgs e)
    {        int intIndex = e.RowIndex;
        GridViewRow gr = QueryGV.Rows[intIndex];
        int intID = SafeQuery.GetSafeInt(QueryGV.DataKeys[intIndex].Value.ToString(), 0);
        string strACName = ((TextBox)gr.Cells[1].Controls[0]).Text.Trim();
        acol.UpdateColumn(strACName, intID);        QueryGV.EditIndex = -1;
        BindGV();
    }((TextBox)gr.Cells[1].Controls[0]).Text.Trim();为什么取到的是以前的值?而不是改过之后的值?