protected void Page_Load(object sender, EventArgs e) { int ID = 0; string strID = Security.Decrypt(Request["id"]); string strTypeID = Request["typeid"]; masterPage = (masterpages_Site)Master; if (!String.IsNullOrEmpty(strID)) { Int32.TryParse(strID, out ID); } try { if (strTypeID == MailUtil.EmailType.Donation.ToString("D")) { DonationDA DA = new DonationDA(); StringBuilder sb = DA.GetEmailBody(ID, Server.MapPath("~/App_Data/DonationEmail.xsl")); litEmailBody.Text += sb.ToString(); pageName = "Donation_Confirmation_Template"; } else if (strTypeID == MailUtil.EmailType.Membership.ToString("D")) { MembershipDA DA = new MembershipDA(); StringBuilder sb = DA.GetEmailBody(ID, Server.MapPath("~/App_Data/MembershipEmail.xsl")); litEmailBody.Text += sb.ToString().Replace("Please keep this email as receipt for your order.", "Please keep this as receipt for your order."); pageName = "Membership_Confirmation_Template"; } else if (strTypeID == MailUtil.EmailType.Volunteer.ToString("D")) { VolunteerDA DA = new VolunteerDA(); StringBuilder sb = DA.GetEmailBody_Test(ID, Server.MapPath("~/App_Data/VolunteerEmail_Test.xsl")); litEmailBody.Text += sb.ToString(); pageName = "Volunteer_Confirmation_Template"; } else if (strTypeID == MailUtil.EmailType.StudentVolunteer.ToString("D")) { StudentVolunteerDA DA = new StudentVolunteerDA(); StringBuilder sb = DA.GetEmailBody_Test(ID, Server.MapPath("~/App_Data/StudentVolunteerEmail_Test.xsl")); litEmailBody.Text += sb.ToString(); pageName = "Volunteer_Confirmation_Template"; } else if (strTypeID == MailUtil.EmailType.Advocacy.ToString("D")) { AdvocacyDA DA = new AdvocacyDA(); StringBuilder sb = DA.GetEmailBody(ID, Server.MapPath("~/App_Data/AdvocacyEmail.xsl")); litEmailBody.Text += sb.ToString(); pageName = "Volunteer_Confirmation_Template"; } else if (strTypeID == MailUtil.EmailType.BigBookSaleVolunteer.ToString("D")) { BigBookSaleVolunteerDA DA = new BigBookSaleVolunteerDA(); StringBuilder sb = DA.GetEmailBody(ID, Server.MapPath("~/App_Data/BigBookSaleVolunteerEmail.xsl")); litEmailBody.Text += sb.ToString(); pageName = "Volunteer_Confirmation_Template"; } } catch (Exception ex) { pageName = ""; litEmailBody.Text = ex.Message; } finally { masterPage.ComponentName = pageName; } }
protected void FormView1_DataBound(object sender, EventArgs e) { FormView fv = (FormView)sender; DataRowView dv = (DataRowView)fv.DataItem; if (dv != null) { int version = (int)dv["Version"]; if (version == 2011) { int id = (int)dv["Id"]; StudentVolunteerDA DA = new StudentVolunteerDA(); StringBuilder sb = DA.GetEmailBody(id, Server.MapPath(MailUtil.StudentVolunteerInfoTemplate)); Literal litCurrentInfo = FormView1.FindControl("litCurrentInfo") as Literal; litCurrentInfo.Text = sb.ToString(); } else { ShowLegacyVersionPanel(); } } }
protected void btnInsert_Click(object sender, EventArgs e) { int newID = 0; if (IsValid) { SqlCommand cmd = null; try { cmd = new SqlCommand("dbo.FSFPL_AddStudentVolunteer"); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("FirstName", txtFirstName.Text.Trim()); cmd.Parameters.AddWithValue("LastName", txtLastName.Text.Trim()); cmd.Parameters.AddWithValue("Address1", txtAddress1.Text.Trim()); cmd.Parameters.AddWithValue("Address2", txtAddress2.Text.Trim()); cmd.Parameters.AddWithValue("City", txtCity.Text.Trim()); cmd.Parameters.AddWithValue("StateCode", ddlState.SelectedValue); cmd.Parameters.AddWithValue("ZipCode", txtZipCode.Text.Trim()); cmd.Parameters.AddWithValue("HomePhone", txtHomePhone.Text.Trim()); cmd.Parameters.AddWithValue("WorkPhone", ""); cmd.Parameters.AddWithValue("Email", txtEmail.Text.Trim()); cmd.Parameters.AddWithValue("OpportunityStepSale", cbxOpportunityStepSale.Checked); // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityStepSaleTime1", cbxOpportunityStepSaleTime1.Checked); cmd.Parameters.AddWithValue("OpportunityStepSaleTime2", cbxOpportunityStepSaleTime2.Checked); cmd.Parameters.AddWithValue("OpportunityDonationCenter", cbxOpportunityDonationCenter.Checked); // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityDonationCenterTime1", cbxOpportunityDonationCenterTime1.Checked); cmd.Parameters.AddWithValue("OpportunityDonationCenterTime2", cbxOpportunityDonationCenterTime2.Checked); // removed Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityDonationCenterFortMason", false); //cbxOpportunityDonationCenterFortMason.Checked cmd.Parameters.AddWithValue("OpportunityBookBayFortMason", false); //cbxOpportunityBookBayFortMason.Checked cmd.Parameters.AddWithValue("OpportunityBookBayFortMasonVolunteered", false); //cbxOpportunityBookBayFortMasonVolunteered.Checked cmd.Parameters.AddWithValue("OpportunityBookBayFortMasonVolunteeredDay", ""); //txtOpportunityBookBayFortMasonVolunteeredDay.Text cmd.Parameters.AddWithValue("OpportunityBookBayFortMasonVolunteeredTime", ""); //txtOpportunityBookBayFortMasonVolunteeredTime.Text cmd.Parameters.AddWithValue("OpportunityBookBayMain", false); //cbxOpportunityBookBayMain.Checked cmd.Parameters.AddWithValue("OpportunityBookBayMainVolunteered", false); //cbxOpportunityBookBayMainVolunteered.Checked cmd.Parameters.AddWithValue("OpportunityBookBayMainVolunteeredDay", ""); //txtOpportunityBookBayMainVolunteeredDay.Text cmd.Parameters.AddWithValue("OpportunityBookBayMainVolunteeredTime", ""); //txtOpportunityBookBayMainVolunteeredTime.Text cmd.Parameters.AddWithValue("OpportunityFriendsOffice", cbxOpportunityFriendsOffice.Checked); // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityFriendsOfficeSkill", cbxOpportunityFriendsOfficeSkill.Checked); cmd.Parameters.AddWithValue("OpportunityFriendsOfficeSkillOther", txtOpportunityFriendsOfficeSkillOther.Text); cmd.Parameters.AddWithValue("OpportunitySpecialEvents", cbxOpportunitySpecialEvents.Checked); // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunitySpecialEventsDaytime", cbxOpportunitySpecialEventsDaytime.Checked); cmd.Parameters.AddWithValue("OpportunitySpecialEventsEvening", cbxOpportunitySpecialEventsEvening.Checked); cmd.Parameters.AddWithValue("OpportunitySpecialEventsWeekend", cbxOpportunitySpecialEventsWeekend.Checked); cmd.Parameters.AddWithValue("OpportunityBigBookSale", cbxOpportunityBigBookSale.Checked); // removed Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityBookDonationPickups", false); //cbxOpportunityBookDonationPickups.Checked // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityStreetTeam", cbxOpportunityStreetTeam.Checked); // added Dec 2, 2009 cmd.Parameters.AddWithValue("OpportunityDollarBookSale", cbxOpportunityDollarBookSale.Checked); cmd.Parameters.AddWithValue("OpportunityDollarBookSaleTime1", cbxOpportunityDollarBookSaleTime1.Checked); cmd.Parameters.AddWithValue("OpportunityDollarBookSaleTime2", cbxOpportunityDollarBookSaleTime2.Checked); cmd.Parameters.AddWithValue("OpportunityAdvocacyEfforts", cbxOpportunityAdvocacy.Checked); cmd.Parameters.AddWithValue("NewsLetter", cbxNewsLetter.Checked); // added Apr 17, 2010 cmd.Parameters.AddWithValue("School", txtSchool.Text.Trim()); cmd.Parameters.AddWithValue("Grade", txtGrade.Text.Trim()); SqlParameter param = new SqlParameter("Id", SqlDbType.Int); param.Size = 8; param.Direction = ParameterDirection.Output; cmd.Parameters.Add(param); cmd.Connection = new SqlConnection(WebConfigurationManager.ConnectionStrings["FSFPL"].ConnectionString); cmd.Connection.Open(); cmd.ExecuteNonQuery(); newID = (int)cmd.Parameters["Id"].Value; StudentVolunteerDA DA = new StudentVolunteerDA(); StringBuilder sbEmailBody = DA.GetEmailBody(newID, Server.MapPath(MailUtil.StudentVolunteerTemplate)); //MailUtil.SendVolunteerEmail(txtEmail.Text, sbEmailBody); Response.Redirect(String.Format("/?Confirmation&id={0}&typeid={1}", Server.UrlEncode(Security.Encrypt(newID.ToString())), MailUtil.EmailType.StudentVolunteer.ToString("D")), true); } catch (Exception ex) { throw ex; } finally { if (cmd.Connection != null && cmd.Connection.State == ConnectionState.Open) { cmd.Connection.Close(); } cmd.Dispose(); } } }
protected void Page_Load(object sender, EventArgs e) { int id = 0; if (!String.IsNullOrEmpty(Request["typeid"])) { CSVExporter.ExportType exportType = (CSVExporter.ExportType)Enum.Parse(typeof(CSVExporter.ExportType), Request["typeid"]); if (Enum.IsDefined(typeof(CSVExporter.ExportType), exportType)) { if (!String.IsNullOrEmpty(Request["id"])) { if (Int32.TryParse(Request["id"], out id)) { switch (exportType) { case CSVExporter.ExportType.Advocacy: AdvocacyDA advocacyDA = new AdvocacyDA(); using (DataTable dt = advocacyDA.GetAdvocacy(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Advocacy, advocacyDA.DetailsViewName); } advocacyDA = null; break; case CSVExporter.ExportType.Donation: DonationDA donationDA = new DonationDA(); using (DataTable dt = donationDA.GetDonation(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Donation, donationDA.DetailsViewName); } donationDA = null; break; case CSVExporter.ExportType.Membership: MembershipDA membershipDA = new MembershipDA(); using (DataTable dt = membershipDA.GetMembership(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Membership, membershipDA.DetailsViewName); } membershipDA = null; break; case CSVExporter.ExportType.StudentVolunteer: StudentVolunteerDA studentVolunteerDA = new StudentVolunteerDA(); using (DataTable dt = studentVolunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.StudentVolunteer, studentVolunteerDA.DetailsViewName); } studentVolunteerDA = null; break; case CSVExporter.ExportType.Volunteer: VolunteerDA volunteerDA = new VolunteerDA(); using (DataTable dt = volunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Volunteer, volunteerDA.DetailsViewName); } volunteerDA = null; break; case CSVExporter.ExportType.BigBookSaleVolunteer: BigBookSaleVolunteerDA bookSaleVolunteerDA = new BigBookSaleVolunteerDA(); using (DataTable dt = bookSaleVolunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BigBookSaleVolunteer, bookSaleVolunteerDA.DetailsViewName); } bookSaleVolunteerDA = null; break; case CSVExporter.ExportType.BookAndPlantSaleVolunteer: BookAndPlantSaleVolunteerDA bookAndPlantSaleVolunteerDA = new BookAndPlantSaleVolunteerDA(); using (DataTable dt = bookAndPlantSaleVolunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BookAndPlantSaleVolunteer, bookAndPlantSaleVolunteerDA.DetailsViewName); } bookAndPlantSaleVolunteerDA = null; break; case CSVExporter.ExportType.BigBookSaleStudentVolunteer: BigBookSaleStudentVolunteerDA bookSaleStudentVolunteerDA = new BigBookSaleStudentVolunteerDA(); using (DataTable dt = bookSaleStudentVolunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BigBookSaleStudentVolunteer, bookSaleStudentVolunteerDA.DetailsViewName); } bookSaleStudentVolunteerDA = null; break; case CSVExporter.ExportType.AnniversaryBookSaleVolunteer: AnniversaryBookSaleVolunteerDA anniversaryBookSaleVolunteerDA = new AnniversaryBookSaleVolunteerDA(); using (DataTable dt = anniversaryBookSaleVolunteerDA.GetVolunteer(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.AnniversaryBookSaleVolunteer, anniversaryBookSaleVolunteerDA.DetailsViewName); } anniversaryBookSaleVolunteerDA = null; break; case CSVExporter.ExportType.BookDonation: BookDonationDA bookDonationDA = new BookDonationDA(); using (DataTable dt = bookDonationDA.GetBookDonation(id)) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BookDonation, bookDonationDA.DetailsViewName); } bookDonationDA = null; break; } } } else if (!String.IsNullOrEmpty(Request["all"])) { switch (exportType) { case CSVExporter.ExportType.Advocacy: AdvocacyDA advocacyDA = new AdvocacyDA(); using (DataTable dt = advocacyDA.GetAllAdvocacy()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Advocacy, advocacyDA.DetailsViewName); } advocacyDA = null; break; case CSVExporter.ExportType.Donation: DonationDA donationDA = new DonationDA(); using (DataTable dt = donationDA.GetAllDonations()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Donation, donationDA.DetailsViewName); } donationDA = null; break; case CSVExporter.ExportType.Membership: MembershipDA membershipDA = new MembershipDA(); using (DataTable dt = membershipDA.GetAllMemberships()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Membership, membershipDA.DetailsViewName); } membershipDA = null; break; case CSVExporter.ExportType.StudentVolunteer: StudentVolunteerDA studentVolunteerDA = new StudentVolunteerDA(); using (DataTable dt = studentVolunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.StudentVolunteer, studentVolunteerDA.DetailsViewName); } studentVolunteerDA = null; break; case CSVExporter.ExportType.Volunteer: VolunteerDA volunteerDA = new VolunteerDA(); using (DataTable dt = volunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.Volunteer, volunteerDA.DetailsViewName); } volunteerDA = null; break; case CSVExporter.ExportType.BigBookSaleVolunteer: BigBookSaleVolunteerDA bookSaleVolunteerDA = new BigBookSaleVolunteerDA(); using (DataTable dt = bookSaleVolunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BigBookSaleVolunteer, bookSaleVolunteerDA.DetailsViewName); } bookSaleVolunteerDA = null; break; case CSVExporter.ExportType.BookAndPlantSaleVolunteer: BookAndPlantSaleVolunteerDA bookAndPlantSaleVolunteerDA = new BookAndPlantSaleVolunteerDA(); using (DataTable dt = bookAndPlantSaleVolunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BookAndPlantSaleVolunteer, bookAndPlantSaleVolunteerDA.DetailsViewName); } bookAndPlantSaleVolunteerDA = null; break; case CSVExporter.ExportType.BigBookSaleStudentVolunteer: BigBookSaleStudentVolunteerDA bookSaleStudentVolunteerDA = new BigBookSaleStudentVolunteerDA(); using (DataTable dt = bookSaleStudentVolunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BigBookSaleStudentVolunteer, bookSaleStudentVolunteerDA.DetailsViewName); } bookSaleStudentVolunteerDA = null; break; case CSVExporter.ExportType.AnniversaryBookSaleVolunteer: AnniversaryBookSaleVolunteerDA anniversaryBookSaleVolunteerDA = new AnniversaryBookSaleVolunteerDA(); using (DataTable dt = anniversaryBookSaleVolunteerDA.GetAllVolunteers()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.AnniversaryBookSaleVolunteer, anniversaryBookSaleVolunteerDA.DetailsViewName); } anniversaryBookSaleVolunteerDA = null; break; case CSVExporter.ExportType.BookDonation: BookDonationDA bookDonationDA = new BookDonationDA(); using (DataTable dt = bookDonationDA.GetAllBookDonations()) { CSVExporter.WriteToCSV(dt, CSVExporter.ExportType.BookDonation, bookDonationDA.DetailsViewName); } bookDonationDA = null; break; } } } } }