protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            DataBindHelper.BindCheckBoxList(ref chLabouringTypes, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");

            ReplaceNavigateURL(ref hlEmploymentChooices, PIKCV.COM.EnumDB.CVFocusCode.EmploymentChooices);
            ReplaceNavigateURL(ref hlReferences, PIKCV.COM.EnumDB.CVFocusCode.References);
            ReplaceNavigateURL(ref hlProhibitedCompanies, PIKCV.COM.EnumDB.CVFocusCode.ProhibitedCompanies);

            imgAddToListCities.Style.Add("cursor", "pointer");
            imgAddToListCountries.Style.Add("cursor", "pointer");
            imgRemoveToListCities.Style.Add("cursor", "pointer");
            imgRemoveToListCountries.Style.Add("cursor", "pointer");

            imgAddToListCities.Attributes.Add("onclick", "SwapItem('" + lbCities.ClientID + "','" + lbSelectedCities.ClientID + "', '" + txtOtherPlace.ClientID + "', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxCity) + "')");
            imgRemoveToListCities.Attributes.Add("onclick", "SwapItem('" + lbSelectedCities.ClientID + "','" + lbCities.ClientID + "', '" + txtOtherPlace.ClientID + "')");

            imgAddToListCountries.Attributes.Add("onclick", "SwapItem('" + lbCountries.ClientID + "','" + lbSelectedCountries.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxCountry) + "')");
            imgRemoveToListCountries.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountries.ClientID + "','" + lbCountries.ClientID + "', ' ')");

            ImgBtnContinue.Attributes.Add("onmousedown", PIKCV.COM.Util.SelectAllListboxScript(lbSelectedCountries.ClientID, lbSelectedCities.ClientID));
            ImgBtnSave.Attributes.Add("onmousedown", PIKCV.COM.Util.SelectAllListboxScript(lbSelectedCountries.ClientID, lbSelectedCities.ClientID));

            lbCities.Attributes.Add("onchange", "OpenCloseOther(" + ((int)PIKCV.COM.EnumDB.Places.OtherPlaceID).ToString() + ")");
        }
    }
Exemple #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         //DataBindHelper.LoadNumberDDL(ref ddlDriverLicenseYear, DateTime.Now.Year, 1, DateTime.Now.AddYears(-40).Year);
         //ddlDriverLicenseYear.Items.Insert(0, new ListItem(PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0"));
         //DataBindHelper.BindDDL(ref ddlDriverLicenseTypes, this.cmbDriverLicenceTypes, "DriverLicenseTypeName", "DriverLicenseTypeID", "0", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
         UCharacteristicAndSocialLifeNav1.SelectNavigatorLink(PIKCV.COM.EnumDB.CVFocusCode.DriverLicense);
         //ddlDriverLicenseTypes.Attributes.Add("onchange", "ShowHideLicenceYear('" + ddlDriverLicenseTypes.ClientID + "','" + (int)PIKCV.COM.EnumDB.LicenceTypes.NoneID + "', '" + ddlDriverLicenseYear.ClientID + "')");
         DataBindHelper.BindCheckBoxList(ref chDriverLicenses, this.cmbDriverLicenceTypes, "DriverLicenseTypeName", "DriverLicenseTypeID");
     }
 }
    private void FillData()
    {
        DataBindHelper.BindListbox(ref lbCountries, this.cmbCountries, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCities, this.cmbTurkeyCities, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbPositions, this.cmbPositions, "PositionName", "PositionID", "");
        DataBindHelper.BindListbox(ref lbSectors, this.cmbSectors, "SectorName", "SectorID", "");
        DataBindHelper.BindCheckBoxList(ref chListLabouringTypes, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");
        DataBindHelper.BindCheckBoxList(ref chEducationLevels, this.cmbEducationLevels, "EducationLevelName", "EducationLevelID");
        DataBindHelper.BindListbox(ref lbCompanies, this.cmbCompanies, "CompanyName", "CompanyID");

        rdAgeRange.Items[0].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_18_24).ToString();
        rdAgeRange.Items[1].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_25_29).ToString();
        rdAgeRange.Items[2].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_30_34).ToString();
        rdAgeRange.Items[3].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_35_39).ToString();
        rdAgeRange.Items[4].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_40_44).ToString();
        rdAgeRange.Items[5].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_45_55).ToString();
        rdAgeRange.Items[6].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_56over).ToString();
        rdAgeRange.Items[7].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_All).ToString();


        imgAddToListCountries.Attributes.Add("onclick", "SwapItem('" + lbCountries.ClientID + "','" + lbSelectedCountries.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxCountry) + "')");
        imgRemoveToListCountries.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountries.ClientID + "','" + lbCountries.ClientID + "', ' ')");

        imgAddToListCities.Attributes.Add("onclick", "SwapItem('" + lbCities.ClientID + "','" + lbSelectedCities.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxCity) + "')");
        imgRemoveToListCities.Attributes.Add("onclick", "SwapItem('" + lbSelectedCities.ClientID + "','" + lbCities.ClientID + "', ' ')");

        imgAddToListPositions.Attributes.Add("onclick", "SwapItem('" + lbPositions.ClientID + "','" + lbSelectedPositions.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxPosition) + "')");
        imgRemoveToListPositions.Attributes.Add("onclick", "SwapItem('" + lbSelectedPositions.ClientID + "','" + lbPositions.ClientID + "', ' ')");

        imgAddToListSector.Attributes.Add("onclick", "SwapItem('" + lbSectors.ClientID + "','" + lbSelectedSectors.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxSector) + "')");
        imgRemoveToListSector.Attributes.Add("onclick", "SwapItem('" + lbSelectedSectors.ClientID + "','" + lbSectors.ClientID + "', ' ')");

        imgAddToListCompanies.Attributes.Add("onclick", "SwapItem('" + lbCompanies.ClientID + "','" + lbSelectedCompanies.ClientID + "', ' ', '" + this.Config(PIKCV.COM.EnumUtil.Config.MaxProhibitedCompanies) + "')");
        imgRemoveToListCompanies.Attributes.Add("onclick", "SwapItem('" + lbSelectedCompanies.ClientID + "','" + lbCompanies.ClientID + "', ' ')");

        BtnSearch.Attributes.Add("onmousedown", "SelectAllListBox('" + lbSelectedCities.ClientID + "," + lbSelectedPositions.ClientID + "," + lbSelectedSectors.ClientID + "," + lbSelectedCompanies.ClientID + "," + lbSelectedCountries.ClientID + "')");

        imgAddToListCountries.Style.Add("cursor", "pointer");
        imgRemoveToListCountries.Style.Add("cursor", "pointer");
        imgAddToListCities.Style.Add("cursor", "pointer");
        imgRemoveToListCities.Style.Add("cursor", "pointer");
        imgAddToListPositions.Style.Add("cursor", "pointer");
        imgRemoveToListPositions.Style.Add("cursor", "pointer");
        imgAddToListSector.Style.Add("cursor", "pointer");
        imgRemoveToListSector.Style.Add("cursor", "pointer");
        imgAddToListCompanies.Style.Add("cursor", "pointer");
        imgRemoveToListCompanies.Style.Add("cursor", "pointer");

        trCustomJobs.Visible = this.smIsLogin;

        chIsFilterSave.Attributes.Add("onclick", "if(this.checked) { dvFilterSave.style.display='block'; } else { dvFilterSave.style.display='none'; }");
    }
Exemple #4
0
    private void FillDetails()
    {
        //DataBindHelper.BindRepeater(ref rptAds, PIKCV.BUS.JobApplicants.GetUserJobApplicants(smUserID, this.smLanguageID, smCompanyID.ToString(), "1", ""));
        DataBindHelper.BindRepeater(ref rptAds, PIKCV.BUS.JobApplicants.GetUserJobApplicants(2, this.smLanguageID, smCompanyID.ToString(), "1", ""));


        chkAgeRange.Items[0].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_All).ToString();
        chkAgeRange.Items[1].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_18_24).ToString();
        chkAgeRange.Items[2].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_25_29).ToString();
        chkAgeRange.Items[3].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_30_34).ToString();
        chkAgeRange.Items[4].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_35_39).ToString();
        chkAgeRange.Items[5].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_40_44).ToString();
        chkAgeRange.Items[6].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_45_55).ToString();
        chkAgeRange.Items[7].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_56over).ToString();

        chkGenders.Items[0].Value = ((int)PIKCV.COM.EnumDB.SexCode.Female).ToString();
        chkGenders.Items[1].Value = ((int)PIKCV.COM.EnumDB.SexCode.Male).ToString();
        chkGenders.Items[2].Value = ((int)PIKCV.COM.EnumDB.SexCode.Both).ToString();

        chkExperience.Items[0].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_0_1).ToString();
        chkExperience.Items[1].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_2_5).ToString();
        chkExperience.Items[2].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_6_10).ToString();
        chkExperience.Items[3].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_10_over).ToString();

        DataBindHelper.BindListbox(ref lbCountries, this.cmbCountries, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCountriesDesired, this.cmbCountries, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCities, this.cmbTurkeyCities, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCitiesDesired, this.cmbTurkeyCities, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbPositions, this.cmbPositions, "PositionName", "PositionID", "");
        DataBindHelper.BindListbox(ref lbPositionDesired, this.cmbPositions, "PositionName", "PositionID", "");
        DataBindHelper.BindListbox(ref lbSectors, this.cmbSectors, "SectorName", "SectorID", "");
        DataBindHelper.BindListbox(ref lbSectorDesired, this.cmbSectors, "SectorName", "SectorID", "");
        DataBindHelper.BindListbox(ref lbComputerSkill, this.cmbComputerKnowledgeTypes, "ComputerKnowledgeTypeName", "ComputerKnowledgeTypeID", "");

        DataBindHelper.BindCheckBoxList(ref chkMaritalStatus, this.cmbMaritalStates, "MaritalStatusName", "MaritalStatusID");
        DataBindHelper.BindCheckBoxList(ref chkMilitaryStates, this.cmbMilitaryStates, "MilitaryStatusName", "MilitaryStatusID");
        DataBindHelper.BindCheckBoxList(ref chkLabouringTypes1, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");
        DataBindHelper.BindCheckBoxList(ref chkLabouringTypes2, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");
        DataBindHelper.BindCheckBoxList(ref chkEducationLevels, this.cmbEducationLevels, "EducationLevelName", "EducationLevelID");
        DataBindHelper.BindCheckBoxList(ref chkEducationStates1, this.cmbEducationStates, "EducationStatusName", "EducationStatusID");
        DataBindHelper.BindCheckBoxList(ref chkEducationStates2, this.cmbEducationStates, "EducationStatusName", "EducationStatusID");

        DataBindHelper.BindDDL(ref ddlDrvLicense1, this.cmbDriverLicenceTypes, "DriverLicenseTypeName", "DriverLicenseTypeID", "");
        DataBindHelper.BindDDL(ref ddlLanguage1, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "");
        DataBindHelper.BindDDL(ref ddlLanguage2, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "");
        DataBindHelper.BindDDL(ref ddlLanguage3, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "");
        DataBindHelper.BindDDL(ref ddlLanguage11, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage111, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage1111, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage22, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage222, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage2222, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage33, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage333, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlLanguage3333, this.cmbLevels, "LevelName", "LevelID", "");
        DataBindHelper.BindDDL(ref ddlSchools1, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.HighSchoolTypes), "SchoolName", "SchoolID", "");
        DataBindHelper.BindDDL(ref ddlSchools2, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.UniversityNames), "SchoolName", "SchoolID", "");
        DataBindHelper.BindDDL(ref ddlSchools3, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.DepartmentNames), "SchoolName", "SchoolID", "");

        add_to_list1.Attributes.Add("onclick", "SwapItem('" + lbCountries.ClientID + "','" + lbSelectedCountries.ClientID + "', ' ')");
        remove_from_list1.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountries.ClientID + "','" + lbCountries.ClientID + "', ' ')");
        add_to_list2.Attributes.Add("onclick", "SwapItem('" + lbCities.ClientID + "','" + lbSelectedCities.ClientID + "', ' ')");
        remove_from_list2.Attributes.Add("onclick", "SwapItem('" + lbSelectedCities.ClientID + "','" + lbCities.ClientID + "', ' ')");
        add_to_list3.Attributes.Add("onclick", "SwapItem('" + lbSectors.ClientID + "','" + lbSelectedSectors.ClientID + "', ' ')");
        remove_from_list3.Attributes.Add("onclick", "SwapItem('" + lbSelectedSectors.ClientID + "','" + lbSectors.ClientID + "', ' ')");
        add_to_list4.Attributes.Add("onclick", "SwapItem('" + lbPositions.ClientID + "','" + lbSelectedPositions.ClientID + "', ' ')");
        remove_from_list4.Attributes.Add("onclick", "SwapItem('" + lbSelectedPositions.ClientID + "','" + lbPositions.ClientID + "', ' ')");
        add_to_list5.Attributes.Add("onclick", "SwapItem('" + lbComputerSkill.ClientID + "','" + lbSelectedComputerSkill.ClientID + "', ' ')");
        remove_from_list5.Attributes.Add("onclick", "SwapItem('" + lbSelectedComputerSkill.ClientID + "','" + lbComputerSkill.ClientID + "', ' ')");
        add_to_list6.Attributes.Add("onclick", "SwapItem('" + lbSectorDesired.ClientID + "','" + lbSelectedSectorDesired.ClientID + "', ' ')");
        remove_from_list6.Attributes.Add("onclick", "SwapItem('" + lbSelectedSectorDesired.ClientID + "','" + lbSectorDesired.ClientID + "', ' ')");
        add_to_list7.Attributes.Add("onclick", "SwapItem('" + lbPositionDesired.ClientID + "','" + lbSelectedPositionDesired.ClientID + "', ' ')");
        remove_from_list7.Attributes.Add("onclick", "SwapItem('" + lbSelectedPositionDesired.ClientID + "','" + lbPositionDesired.ClientID + "', ' ')");
        add_to_list8.Attributes.Add("onclick", "SwapItem('" + lbCountriesDesired.ClientID + "','" + lbSelectedCountriesDesired.ClientID + "', ' ')");
        remove_from_list8.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountriesDesired.ClientID + "','" + lbCountriesDesired.ClientID + "', ' ')");
        add_to_list9.Attributes.Add("onclick", "SwapItem('" + lbCitiesDesired.ClientID + "','" + lbSelectedCitiesDesired.ClientID + "', ' ')");
        remove_from_list9.Attributes.Add("onclick", "SwapItem('" + lbSelectedCitiesDesired.ClientID + "','" + lbCitiesDesired.ClientID + "', ' ')");

        // Ýlanlarý Bind Et
    }
Exemple #5
0
    private void FillDetails()
    {
        #region Details

        // Baþvuru Statüleri
        DataBindHelper.BindCheckBoxList(ref chkEvaluation, PIKCV.BUS.JobApplicants.GetJobApplicationStates(PIKCV.COM.EnumDB.LanguageID.Turkish, false), "JobApplicationStatusName", "JobApplicationStatusID");
        chkEvaluation.Items.Insert(0, new ListItem("Tümü", "0"));

        // Yaþ aralýðý
        chkAgeRange.Items[0].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_All).ToString();
        chkAgeRange.Items[1].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_18_24).ToString();
        chkAgeRange.Items[2].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_25_29).ToString();
        chkAgeRange.Items[3].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_30_34).ToString();
        chkAgeRange.Items[4].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_35_39).ToString();
        chkAgeRange.Items[5].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_40_44).ToString();
        chkAgeRange.Items[6].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_45_55).ToString();
        chkAgeRange.Items[7].Value = ((int)PIKCV.COM.EnumDB.AgeRange.age_56over).ToString();

        // Cinsiyet
        rblGenders.Items[0].Value = ((int)PIKCV.COM.EnumDB.SexCode.Female).ToString();
        rblGenders.Items[1].Value = ((int)PIKCV.COM.EnumDB.SexCode.Male).ToString();
        rblGenders.Items[2].Value = ((int)PIKCV.COM.EnumDB.SexCode.Both).ToString();

        chkExperience.Items[0].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_0_1).ToString();
        chkExperience.Items[1].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_2_5).ToString();
        chkExperience.Items[2].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_6_10).ToString();
        chkExperience.Items[3].Value = ((int)PIKCV.COM.EnumDB.Experience.experience_10_over).ToString();

        DataBindHelper.BindListbox(ref lbCountries, this.cmbCountries, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCountriesDesired, this.cmbCountries, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCities, this.cmbTurkeyCities, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbCitiesDesired, this.cmbTurkeyCities, "PlaceName", "PlaceID", "");
        DataBindHelper.BindListbox(ref lbSectors, this.cmbSectors, "SectorName", "SectorID", "");
        DataBindHelper.BindListbox(ref lbSectorDesired, this.cmbSectors, "SectorName", "SectorID", "");
        DataBindHelper.BindListbox(ref lbComputerSkill, this.cmbComputerKnowledgeTypes, "ComputerKnowledgeTypeName", "ComputerKnowledgeTypeID", "");

        // Eðitim durumu
        DataBindHelper.BindCheckBoxList(ref chkEducationLevels, this.cmbEducationLevels, "EducationLevelName", "EducationLevelID");

        rdlMaritalStatus.Items[0].Value = ((int)PIKCV.COM.EnumDB.MaritalStates.Single).ToString();
        rdlMaritalStatus.Items[1].Value = ((int)PIKCV.COM.EnumDB.MaritalStates.Married).ToString();
        rdlMaritalStatus.Items[2].Value = ((int)PIKCV.COM.EnumDB.MaritalStates.None).ToString();

        DataBindHelper.BindCheckBoxList(ref chkMilitaryStates, this.cmbMilitaryStates, "MilitaryStatusName", "MilitaryStatusID");
        DataBindHelper.BindCheckBoxList(ref chkLabouringTypes1, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");
        DataBindHelper.BindCheckBoxList(ref chkLabouringTypes2, this.cmbLabouringTypes, "LabouringTypeName", "LabouringTypeID");
        DataBindHelper.BindCheckBoxList(ref chkEducationStates1, this.cmbEducationStates, "EducationStatusName", "EducationStatusID");
        DataBindHelper.BindCheckBoxList(ref chkEducationStates2, this.cmbEducationStates, "EducationStatusName", "EducationStatusID");

        DataBindHelper.BindDDL(ref ddlLanguage1, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage2, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage3, this.cmbForeignLanguages, "ForeignLanguageName", "ForeignLanguageID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage11, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage111, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage1111, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage22, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage222, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage2222, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage33, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage333, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlLanguage3333, this.cmbLevels, "LevelName", "LevelID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlSchools1, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.HighSchoolTypes), "SchoolName", "SchoolID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlSchools2, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.UniversityNames), "SchoolName", "SchoolID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");
        DataBindHelper.BindDDL(ref ddlSchools3, PIKCV.COM.Data.GetSchools(this.cmbSchools, PIKCV.COM.EnumDB.SchoolTypes.DepartmentNames), "SchoolName", "SchoolID", "", PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, PIKCV.COM.EnumDB.ErrorTypes.InitialText), "0");

        DataBindHelper.BindRadioButtonList(ref rblDrvLicense, this.cmbDriverLicenceTypes, "DriverLicenseTypeName", "DriverLicenseTypeID", "");
        rblDrvLicense.Items.Add(new ListItem("Tümü", ((int)PIKCV.COM.EnumDB.LicenceTypes.All).ToString()));
        rblDrvLicense.SelectedValue = ((int)PIKCV.COM.EnumDB.LicenceTypes.All).ToString();

        DataBindHelper.BindCheckBoxList(ref chDrvLicense, this.cmbDriverLicenceTypes, "DriverLicenseTypeName", "DriverLicenseTypeID");

        add_to_list1.Attributes.Add("onclick", "SwapItem('" + lbCountries.ClientID + "','" + lbSelectedCountries.ClientID + "', ' ')");
        remove_from_list1.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountries.ClientID + "','" + lbCountries.ClientID + "', ' ')");
        add_to_list2.Attributes.Add("onclick", "SwapItem('" + lbCities.ClientID + "','" + lbSelectedCities.ClientID + "', ' ')");
        remove_from_list2.Attributes.Add("onclick", "SwapItem('" + lbSelectedCities.ClientID + "','" + lbCities.ClientID + "', ' ')");
        add_to_list3.Attributes.Add("onclick", "SwapItem('" + lbSectors.ClientID + "','" + lbSelectedSectors.ClientID + "', ' ')");
        remove_from_list3.Attributes.Add("onclick", "SwapItem('" + lbSelectedSectors.ClientID + "','" + lbSectors.ClientID + "', ' ')");
        add_to_list4.Attributes.Add("onclick", "SwapItem('" + lbPositions.ClientID + "','" + lbSelectedPositions.ClientID + "', ' ')");
        remove_from_list4.Attributes.Add("onclick", "SwapItem('" + lbSelectedPositions.ClientID + "','" + lbPositions.ClientID + "', ' ')");
        add_to_list5.Attributes.Add("onclick", "SwapItem('" + lbComputerSkill.ClientID + "','" + lbSelectedComputerSkill.ClientID + "', ' ')");
        remove_from_list5.Attributes.Add("onclick", "SwapItem('" + lbSelectedComputerSkill.ClientID + "','" + lbComputerSkill.ClientID + "', ' ')");
        add_to_list6.Attributes.Add("onclick", "SwapItem('" + lbSectorDesired.ClientID + "','" + lbSelectedSectorDesired.ClientID + "', ' ')");
        remove_from_list6.Attributes.Add("onclick", "SwapItem('" + lbSelectedSectorDesired.ClientID + "','" + lbSectorDesired.ClientID + "', ' ')");
        add_to_list7.Attributes.Add("onclick", "SwapItem('" + lbPositionDesired.ClientID + "','" + lbSelectedPositionDesired.ClientID + "', ' ')");
        remove_from_list7.Attributes.Add("onclick", "SwapItem('" + lbSelectedPositionDesired.ClientID + "','" + lbPositionDesired.ClientID + "', ' ')");
        add_to_list8.Attributes.Add("onclick", "SwapItem('" + lbCountriesDesired.ClientID + "','" + lbSelectedCountriesDesired.ClientID + "', ' ')");
        remove_from_list8.Attributes.Add("onclick", "SwapItem('" + lbSelectedCountriesDesired.ClientID + "','" + lbCountriesDesired.ClientID + "', ' ')");
        add_to_list9.Attributes.Add("onclick", "SwapItem('" + lbCitiesDesired.ClientID + "','" + lbSelectedCitiesDesired.ClientID + "', ' ')");
        remove_from_list9.Attributes.Add("onclick", "SwapItem('" + lbSelectedCitiesDesired.ClientID + "','" + lbCitiesDesired.ClientID + "', ' ')");

        #endregion
    }