protected void Page_Load(object sender, EventArgs e)
    {
        int_id = Int32.Parse(Session["inter"].ToString().TrimEnd());
        pos_id = Int32.Parse(Session["pos"].ToString().TrimEnd());
        fillInfo();
        Candidate_pros pros = new Candidate_pros();

        int_time = pros.getFirstInterviewTime(Session["user"].ToString().TrimEnd());
        getdt();
    }
Example #2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        Session["cp"] = "Home.aspx";
        Account ac   = new Account();
        string  name = ac.get_name(Session["user"].ToString().TrimEnd());

        Label1.Text = name.ToUpper();
        Candidate_pros pros = new Candidate_pros();

        int_time = pros.getFirstInterviewTime(Session["user"].ToString().TrimEnd());
        getdt();
        getInterviewDetails();
    }