Objective: Practice using validation and server controls.
Description: Enhance the Do List website by allowing the user to upload simple text files, allowing items to be deleted from the list, and enhancing validation.
Specifications
1. Begin using the solution from Assignment #1.
2. Add a Button control which will delete the selected item in the ListBox.
3. Allow the user to move an item up or down. You can use am ImageMap using the updown.jpg provided if you wish. (The JPG file is 100px x 78px.)
4. Add a button which does these things:
a.)stores all the steps in the ListBox into Session state, then
b.)redirects the user to another page, then
c.)displays those steps on that page. The steps are the only thing that page should show.
5. Remove the RequiredFieldValidator and re-implement the validation some other way (e.g. CustomFieldValidator or your own code). This is necessary because the RequiredFieldValidator interferes with the Delete button.