protected override void OnInit(EventArgs e)
        {
            Item   parentItem = Sitecore.Context.Database.GetItem(Sitecore.Data.ID.Parse(Constants.Pages.ParentsGroups));
            string itemHref   = Sitecore.Links.LinkManager.GetItemUrl(parentItem);

            ref_ParentGroup.HRef    = itemHref;
            litBackLink.Text        = DictionaryConstants.GroupRecommendedBackLink;//back to parents page
            litRecommendHeader.Text = DictionaryConstants.RecommendedHeader;
            litGroupPrivacy.Text    = DictionaryConstants.GroupPrivacyStatement;
            if (CurrentMember != null)
            {
                litViewProfileLink1.Text = String.Format(DictionaryConstants.ViewProfileLink1,
                                                         CurrentMember != null ?
                                                         CurrentMember.GetMemberPublicProfile() :
                                                         UnderstoodDotOrg.Common.Helpers.MembershipHelper.SignUpLink()
                                                         );
            }

            base.OnInit(e);
        }