Example #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        this.IsLogin();
        if (!IsPostBack)
        {
            if (CARETTA.COM.Util.IsNumeric(Request.QueryString["UserID"]) && CARETTA.COM.Util.IsNumeric(Request.QueryString["JobApplicantID"]))
            {
                this.smUserID = Convert.ToInt32(Request.QueryString["UserID"]);
                this.smEmployeeSearchResultUserIDs = new ArrayList();
                this.smEmployeeSearchResultUserIDs.Add(this.smUserID);
                Session.Remove(PIKCV.COM.EnumUtil.Sess.EmployeeSearchQueries.ToString());
                this.Redirect("Company-Membership-UserInfo&JobApplicantID=" + Request.QueryString["JobApplicantID"].ToString());
            }

            if (!(CARETTA.COM.Util.IsNumeric(Request.QueryString["[JobApplicationStatusName]"])))
            {
                this.smListFilterTypes = new ArrayList();
            }
            UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.CompanyJobApplicants);
            DataTable dtJobs = PIKCV.BUS.Job.GetCompanyAllJobs(this.smCompanyID, PIKCV.COM.EnumDB.JobStatus.All, this.smLanguageID);
            if (dtJobs.Rows.Count > 0)
            {
                if (this.smCompanyID != Convert.ToInt32(dtJobs.Rows[0]["CompanyID"]))
                {
                    this.GoToDefaultPage();
                }
            }

            DataBindHelper.BindDDL(ref ddlCompanyJobs, dtJobs, "PositionName", "JobID", "", "Lütfen Seçiniz...", "0");
            if (CARETTA.COM.Util.IsNumeric(Request.QueryString["JobID"]))
            {
                ddlCompanyJobs.SelectedValue = Request.QueryString["JobID"].ToString();
            }
        }
    }
Example #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.Message);
     }
 }
Example #3
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         this.smJobDetailRefererUrl = PIKCV.COM.Enumerations.JobDetailRefererUrl.JobApplicants;
         UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.UserJobApplicants);
     }
 }
Example #4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.IsLogin();
     if (!IsPostBack)
     {
         UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.CompanyMessages);
     }
 }
Example #5
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            if (Util.IsNumeric(Request.QueryString["JobStatus"]))
            {
                int Status = Convert.ToInt32(Request.QueryString["JobStatus"]);
                PIKCV.COM.Enumerations.JobsTabs jobStatus = (PIKCV.COM.Enumerations.JobsTabs)Status;
                UJobsTabs1.TabActive(jobStatus);
                UpdateJobStatus(jobStatus);
            }

            UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.EnteredJobs);
        }
    }
Example #6
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         if (Util.IsNumeric(Request.QueryString["PopupID"]))
         {
             int PopupID = Convert.ToInt32(Request.QueryString["PopupID"]);
             PIKCV.COM.EnumDB.ErrorTypes ErrorType = (PIKCV.COM.EnumDB.ErrorTypes)PopupID;
             ShowModal.Show(UserControls_Common_uModalPopup.Icons.alert, PIKCV.COM.Data.GetErrorMessageTitleCache(this.cmbErrors, ErrorType), PIKCV.COM.Data.GetErrorMessageCache(this.cmbErrors, ErrorType), false);
         }
         this.smJobDetailRefererUrl = PIKCV.COM.Enumerations.JobDetailRefererUrl.JobSearch;
         UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.JobSearchResults);
         dvUserFilters.Visible = ((this.smIsLogin) && (this.smMemberType == PIKCV.COM.EnumDB.MemberTypes.Employee));
     }
     DataBindHelper.BindDDL(ref ddlFilters, PIKCV.BUS.Filters.GetUserFilters(PIKCV.COM.EnumDB.FilterTypes.JobSearch, this.smUserID, PIKCV.COM.EnumDB.MemberTypes.Employee, false), "FilterName", "FilterID", "0", "Filtrelerim", "0");
 }
Example #7
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.IsLogin();
     if (!IsPostBack)
     {
         if (Util.IsNumeric(Request.QueryString["UserID"]))
         {
             this.smUserID = Convert.ToInt32(Request.QueryString["UserID"]);
             this.smEmployeeSearchResultUserIDs = new ArrayList();
             this.smEmployeeSearchResultUserIDs.Add(this.smUserID);
             Session.Remove(PIKCV.COM.EnumUtil.Sess.EmployeeSearchQueries.ToString());
             this.Redirect("Company-Membership-UserInfo");
         }
         UList1.DataBind(PIKCV.COM.Enumerations.ListTypes.CompanySentMessages);
     }
 }