protected void m_grid_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            try
            {
                int id = e.RowIndex;
                m_grid.EditIndex = id;
                GridViewRow row = m_grid.Rows[id];

               string eName = ((TextBox)row.FindControl("txtUIndex")).Text;
                string eDetail = ((TextBox)row.FindControl("txtUEthnic")).Text;

                short updateId = Int16.Parse(m_grid.DataKeys[id].Value.ToString());
                if (updateId > 0)
                {
                    cls_Groups objgroup = new cls_Groups();
                    objgroup.GroupId = updateId;
                    objgroup.GroupName = eName;
                    objgroup.Detail = eDetail;
                    objgroup.CreatedTime = DateTime.Now;
                    objgroup.CompanyId = 0;

                    int _result = objgroup.Update();
                    if (_result == 1)
                    {
                        ltlAnnouncement.Text = "Sửa nhóm người dùng '" + eName + "' thành công!";
                    }
                    if (_result < 0)
                    {
                        ltlAnnouncement.Text = "Có lỗi trong quá trình sửa dữ liệu!";
                    }
                }
            }
            catch (Exception ex)
            {
                ltlAnnouncement.Text = "Khong cap nhat duoc du lieu. Vui long lien he voi quan tri<br>" + ex.Message;
            }

            bindData(-1);
        }