protected void btn_edit_Click(object sender, EventArgs e)
        {
            try
            {
                CateNewsGroup catenewsGroup = ReceiveHtml();
                CateNewsGroupBSO catenewsGroupBSO = new CateNewsGroupBSO();

                catenewsGroupBSO.UpdateCateNewsGroup(catenewsGroup);

                clientview.Text = String.Format(Resources.StringAdmin.UpdateSuccessful, "danh mục", catenewsGroup.CateNewsGroupName);

            }
            catch (Exception ex)
            {
                clientview.Text = ex.Message.ToString();
            }
        }