/* Name: Joseph Schuman Date: 2/13/15 Title: Ch. 4 Assignment. Description: Hidden process page for the Default.aspx page. */ using System; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } } /* Name: Joseph Schuman Date: 2/13/15 Title: Ch. 4 Assignment. Description: Hidden process page for the groups.aspx page. */ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class groups : System.Web.UI.Page { protected void Page_LoadComplete(object sender, EventArgs e) { if (Page.IsPostBack && Page.Request.Params.Get("__EVENTTARGET") != "dateCalendar") { Page.Validate(); if (Page.IsValid) { resForm.Visible = false; message.Visible = true; message.Text = "
Your reservation has been submitted. A confirmation message has been sent to your e-mail address.
"; } } } protected void dateSelected(Object Source, EventArgs E) { date.Text = dateCalendar.SelectedDate.ToString("d"); } protected void add_Click(Object Source, EventArgs E) { groupMembers.Items.Add(new ListItem(memberLastName.Text + ", " + memberFirstName.Text)); } protected void remove_Click(Object Source, EventArgs E) { groupMembers.Items.Remove(groupMembers.SelectedItem); } } /* Name: Joseph Schuman Date: 2/13/15 Title: Ch. 4 Assignment. Description: Hidden process page for the instructors.aspx page. */ using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class instructors : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void instructor_Clicked(Object sender, ImageMapEventArgs e) { switch (e.PostBackValue) { case "Jardina": instructorInfo.Text = "Bob JardinaYour reservation has been submitted. A confirmation message has been sent to your e-mail address.
"; } } } protected void dateSelected(object Source, EventArgs E) { date.Text = dateCalendar .SelectedDate.ToString("d"); } } Name: Joseph Schuman Date: 2/23/15 Title: Ch. 4 Assignment. Description: External Style page for the Big River Kayaking. */ { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 7pt; font-style: normal; font-weight: normal; line-height: 12px; } p { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal; line-height: 14px; font-weight: normal; color: #333333; } h1 { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-weight: normal; color: #003366; margin-bottom: 0px; line-height: 16px; } h2 { font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-weight: bold; color: #0066CC; line-height: 13px; margin-bottom: 20px; } h3 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 30px; font-weight: bold; color: #0066CC; margin-top: 0px; margin-bottom: 0px; } a { color: #0066FF; text-decoration: underline; } a:visited { color: #0066CC; text-decoration: underline; } a:hover { color: #66CCFF; text-decoration: underline; } a:active { color: #0066CC; text-decoration: underline; } .menu a:link { color: #FFFFFF; text-decoration: none; } .menu a:visited { color: #FFFFFF; text-decoration: none; } .menu a:hover { color: #003366; text-decoration: none; } .menu a:active { color: #003366; text-decoration: none; } .logoname { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold; color: #003366; } .txtmenu { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; } .cellbackmenu { background-image: url(images/cellback_menutop.jpg); background-repeat: no-repeat; background-position: left top; } .cellbackbannerhome { background-image: url(images/cellback_bannerleft.jpg); background-repeat: no-repeat; background-position: left top; } .cellbackbannerbody { background-image: url(images/cellback_bodyhead.jpg); background-repeat: no-repeat; background-position: left top; } .logonamenobold { font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: normal; color: #003366; } body.c4 { margin-bottom: 0; margin-top: 0; margin-left: 0; margin-right: 0; } td.c3 { background-image: url(images/cellback_bodyheadextend.jpg); } table.c2 { background-image: url(images/cellback_menutopextend.jpg); } div.c1 { text-align: center; }