Overview
This assignment combines several elements including validation controls, style sheets and master pages, and state, particularly Session states
Instructions
Create a master page for the Community Assist site. You may style it however you wish.
Next add a content page. In the content page recreate the Donor addition form you made for Assignment 2. (You do not have to put it in an ajax panel.) Add an email field to te form.
Use validation controls to make the LastName, Street, City, Zipcode, and home phone as required. Validate the email field to make sure it is a valid email. Make sure the donation amount is a valid double data type
Create another content page called "Confirm.aspx".
Back on the Donor form page, when the Submit button is clicked on the donation write the fields into one or more Session variables and then redirect the user to the confirm page
On the confirm page read all the values from the session variable and display them as you wish. Thank the user and ask them to confirm the information.
You do not have to do anything with the confirm button
Grading
This assignment is worth 15 points.
- 5 points for the master page and stylesheet
- 2 points for the validation controls
- 3 points for the Session variable
- 5 points for the confirmation page