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

OnInit() protected method

protected OnInit ( EventArgs e ) : void
e EventArgs
return void
        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            this.Load += new EventHandler(ManageTemplate_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.gvTemplate.RowCommand += new GridViewCommandEventHandler(gvTemplate_RowCommand);
            this.gvTemplate.PageIndexChanging += new GridViewPageEventHandler(gvTemplate_PageIndexChanging);
        }
        #endregion