AJH.CMS.WEB.UI.Admin.ManageHtmlBlock_UC.OnInit C# (CSharp) Method

OnInit() protected method

protected OnInit ( EventArgs e ) : void
e System.EventArgs
return void
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            this.Load += new EventHandler(ManageHtmlBlock_UC_Load);
            this.btnExit.Click += new EventHandler(btnExit_Click);
            this.btnReset.Click += new EventHandler(btnReset_Click);
            this.btnSave.Click += new EventHandler(btnSave_Click);
            this.btnUpdate.Click += new EventHandler(btnUpdate_Click);
            this.ibtnAdd.Click += new ImageClickEventHandler(ibtnAdd_Click);
            this.ibtnDelete.Click += new ImageClickEventHandler(ibtnDelete_Click);
            this.gvHtmlBlock.RowCommand += new GridViewCommandEventHandler(gvHtmlBlock_RowCommand);
            this.gvHtmlBlock.PageIndexChanging += new GridViewPageEventHandler(gvHtmlBlock_PageIndexChanging);
        }
        #endregion