protected void Page_Load(object sender, EventArgs e)
        {
            facade = new BusinessFacade(myConn);

            //Neu da tao CV Thi chi co update
            if ((Boolean)Context.Profile.GetPropertyValue("Employee.AllowCreateCV") == false)
            {
                lbtn_AdsCv.Visible = false;
            }
            MembershipUser mu = Membership.GetUser();
            UserId = mu.ProviderUserKey.ToString();
            CollectionPager1.MaxPages = General.MAX_PAGE;
            CollectionPager1.PageSize = General.PAGE_SIZE;
            CollectionPager1.DataSource = facade.GetSaveJob2(mu.ProviderUserKey.ToString());
            CollectionPager1.BindToControl = Repeater1;
            Repeater1.DataSource = CollectionPager1.DataSourcePaged;
            Repeater1.DataBind();
        }