protected void m_grid_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            try
            {
                string commandName = e.CommandName;
                GridViewRow row = m_grid.FooterRow;
                if (commandName == "Insert")
                {
                    cls_Groups objgroup = new cls_Groups();

                    string eName = ((TextBox)row.FindControl("txtIIndex")).Text;
                    string eDetail = ((TextBox)row.FindControl("txtIEthnic")).Text;

                    objgroup.GroupName = eName;
                    objgroup.Detail = eDetail;
                    objgroup.CreatedTime = DateTime.Now;
                    objgroup.CompanyId = 0;

                    int _result = objgroup.Insert();
                    if (_result >= 1)
                    {
                        ltlAnnouncement.Text = "Thêm mới nhóm người dùng '" + eName + "' thành công!";
                    }
                    if (_result == -1)
                    {
                        ltlAnnouncement.Text = "nhóm người dùng '" + eName + "' đã tồn tại, bạn nên kiểm tra lại!";
                    }
                    if (_result == 0)
                    {
                        ltlAnnouncement.Text = "Có lỗi trong quá trình thêm mới!";
                    }
                    bindData(-1);
                }
            }
            catch (Exception ex)
            {
                ltlAnnouncement.Text = "Khong them moi duoc du lieu. Vui long lien he voi quan tri<br>" + ex.Message;
            }
        }