To Projects

IT 230 -- Project 3
Online Survey I

  1. Create an ASP.Net page (.aspx extension) that inputs user input for an online survey:
     
    1. Include a title and heading describing the purpose of the page.
       
    2. Include a document-level or external style for your page.
       
    3. Include demographic information on your survey, such as ID number, gender, income, zip code.
       
    4. Include at least five questions on your survey.
       
    5. Use (at least) the following controls: Label, Literal, TextBox, DropDownMenu, RadioButton, Submit Button.
       
    6. After the user has entered the user data and clicked the submit button, the following information should be posted to the bottom of the page in a literal control:
       
      1. Thankyou for taking the survey.
         
      2. Demographic information
         
      3. Survey answer for each question
         

    7. For Project 4, Online Survey II, the information in Point 4 will be entered in a text file on the server instead of on the bottom of the page.
       
    8. Update your index page to include Project 3.
       
    9. Grading breakdown: Functionality (does it work?) 70%; Styles and Layout 15%; Content of survey 15%