Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            ProfileBasisInfo profileBasisInfo = this.LoadControl("~/UserControls/Dashboard/ProfileBasisInfo.ascx") as ProfileBasisInfo;

            profileBasisInfo.ID = "PBI";
            PhProperties.Controls.Add(profileBasisInfo);

            ProfileCommunication profileCommunication = this.LoadControl("~/UserControls/Dashboard/ProfileCommunication.ascx") as ProfileCommunication;

            profileCommunication.ID = "PCO";
            PhProperties.Controls.Add(profileCommunication);

            ProfileTalente profileTalents = this.LoadControl("~/UserControls/Dashboard/ProfileTalente.ascx") as ProfileTalente;

            profileTalents.ID = "PTA";
            PhProperties.Controls.Add(profileTalents);
        }
Exemplo n.º 2
0
        protected void OnSaveClick(object sender, EventArgs e)
        {
            ProfileBasisInfo profileBasisInfo = PhProperties.FindControl("PBI") as ProfileBasisInfo;

            if (profileBasisInfo != null)
            {
                profileBasisInfo.Save();
            }
            ProfileCommunication profileCommunication = PhProperties.FindControl("PCO") as ProfileCommunication;

            if (profileCommunication != null)
            {
                profileCommunication.Save();
            }
            ProfileTalente profileTalente = PhProperties.FindControl("PTA") as ProfileTalente;

            if (profileTalente != null)
            {
                profileTalente.Save();
            }
        }