private void PopulateCombo()
        {
            try
            {
                //#region Designation
                //ddlDesignation.DataSource = _evalManager.GetAllGen_Desig();
                //ddlDesignation.DataTextField = "DesigName";
                //ddlDesignation.DataValueField = "DesigKey";
                //ddlDesignation.DataBind();
                //ddlDesignation.Items.Insert(0, new ListItem() { Value = "", Text = "" });
                //#endregion

                //#region OtherRecommendation
                //LeaveApplicationManager lm = new LeaveApplicationManager();
                //drpOtherRecom.DataSource = lm.GetEntityLookup(enumsHr.enumEntitySetup.OtherRecommendation);
                //drpOtherRecom.DataTextField = "ElementName";
                //drpOtherRecom.DataValueField = "EntityKey";
                //drpOtherRecom.DataBind();
                //drpOtherRecom.Items.Insert(0, new ListItem() { Value = "", Text = "" });
                //#endregion

                HRM_EvalItemList = _evalManager.GetAllHRM_EvalItem(pagetype);
            }
            catch (Exception ex)
            {
                ((PageBase)this.Page).ErrorMessage = (ExceptionHelper.getExceptionMessage(ex));
            }
        }