CREATE YOUR OWN INTERNET STORE
Using Capt .Webb's Explorer Fashions website as an inspiration, create the client-side processes for an Internet store of your own design. The store should offer:
- at least three products
- an individual page (or frame) for each product which contains:
- the product description
- size, color and quantity choices for each product.
You may use radio, checkboxes, text or any other HTML or Active-X control you feel appropiriate to obtain these three user choices.
- a "always visible" amount of the user's current order
- offer modify and delete options for each item on the user's order
- onSubmit the program should gather the appropriate payment and delivery data (Visa or MC or AX card number, expiration date, ship to name, address, city, state, zip, etc.). This page is to be of your own design.
After the payment/delivery information is gathered, submit the order form to the same echoxml exe program as in assignment 3:
http://disc-nt.cba.uh.edu/Students/parks/echoxml.exe
for processing. The orderform should submit the following XML tags FOR EACH item on the order:
- product name (name=Productx where x=item number, value=text)
- size (name=Sisex where x is the item number, value=a positive integer)
- color (name=Colorx where x is the item number, value=text)
- unit price (name=UnitPricex where x is the item number, value=numeric, a decimal and two digits to the right of the decimal)
- quantity (name=Quantityx where x is the item number, value=positive integer)
XML tags for the overall xml structure and payment/delivery tags are to be of your own design.
Name this page "a4.htm" and create a link to this assignment on your homepage. You can write this either in VBScript or Javascript.