Cold Fusion Search Forms Assignment

Use the OWS database for this assignment.

1. Create an HTML search page to get search parameters for the actors table.  It should display three form elements - a text box (pick some field), a drop down list (<select>) to display age ranges, and radio buttons for gender.  The <select> tag should not used the selected attribute and the radio button should not use the checked attribute.  Save this as actorsform.html.  

2. Create a dynamic SQL CF template that receives input from the actorsform.html page and displays the results of the search.  The search condition should be an "AND" of whatever search criteria are applied from the three fields.  The page should not produce Cold Fusion errors if not all the fields have been filled in on the search form.

3. Save the file you created in #1 as a .cfm file.  We do this because we are going to add CF Form validation to this.  

Due Wednesday, October 9.  Email me the three files as attachments but do not email me the database.  Add embedded form validation (as hidden form fields) and use client-side validation using <cfform> and <cfinput>.