private void loadHETHONGTOCHUC(int maHETHONGTOCHUC)
        {
            BUSHeThongToChuc BUSHeThongToChuc = new BUSHeThongToChuc();
            int MaBaiViet = int.Parse(Request.QueryString["id"]);
            HETHONGTOCHUC HETHONGTOCHUC = BUSHeThongToChuc.TimKiem(MaBaiViet);
            this.lblNoiDungBaiViet.Text = HETHONGTOCHUC.NoiDung;

            lblTieuDe.Text = HETHONGTOCHUC.TieuDe;
            lblTieuDe.Font.Bold = true;
            lblTieuDe.Font.Size = 18;
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            //Thong tin nguoi dung

            if (!IsPostBack)
            {
                if (Request.QueryString["id"] != null)
                {
                    //lay ma
                    int mahethongtochuc = int.Parse(Request.QueryString["id"]);

                    //lay thong tin va load len cac textbox
                    BUSHeThongToChuc BUSHeThongToChuc = new BUSHeThongToChuc();
                    HETHONGTOCHUC lpDTO = BUSHeThongToChuc.TimKiem(mahethongtochuc);
                    //  this.txtmahethongtochuc.Text = Convert.ToString(lpDTO.MaBai );
                    this.txttenhethongtochuc.Text = lpDTO.TieuDe;
                    this.ednoidung.Content = lpDTO.NoiDung;
                }
            }
        }