protected void Page_Init(object sender, EventArgs e)
        {
            Participants           = AttendRegistrationEngine.GetParticipants(CurrentPage.ContentLink).ToList();
            NoParticipants.Visible = !(Participants.Count <IParticipant>() > 0);
            Sessions = AttendSessionEngine.GetSessions(CurrentPage.ContentLink).ToList();

            PopulateStatusDropDown();
            PopulateEMailDropDown();
            PopulateSessionDropDown();

            DeleteParticipantsCopy.OnClientClick = "return confirm('" + DeleteConfirmation() + "');";

            NoParticipants.DataBind();
        }
Exemplo n.º 2
0
 protected void Page_Init(object sender, EventArgs e)
 {
     Sessions = AttendSessionEngine.GetSessions(CurrentPage.ContentLink).ToList();
     BVNetwork.Attend.Business.Localization.FixEditModeCulture.TryToFix();
 }