HELP DESK - TECHNICAL
Home Demos Features Quick Start Prices Help Desk Contact

Quick Start Page

Just copy-and-paste this code into your web page and it will work.
Edit only the VALUE fields for your products.
Note: Use Ctrl-C to copy-and-paste in browsers!

---Start cut-and-paste code below this line: ---- "how to cut-and-paste"

<FORM method=post action="http://www.coolcart.net/shop/coolcart.aspx/democart">
Product A<BR>
Price $50.00<BR>
<INPUT NAME="Qty" size=3 VALUE=""> Quantity <BR>
<INPUT TYPE="HIDDEN" NAME="ID" VALUE="Product A">
<INPUT TYPE="HIDDEN" NAME="Describe" VALUE="100% Cotton">
<INPUT TYPE="HIDDEN" NAME="Price" VALUE="50.00">
<INPUT TYPE="HIDDEN" NAME="Ship" VALUE="1.00">
<INPUT TYPE="HIDDEN" NAME="Multi" VALUE="N">
<INPUT name=Color type=radio VALUE="Color: Blue">Blue
<INPUT name=Color type=radio VALUE="Color: Green">Green
<INPUT name=Color type=radio VALUE="Color: Gold^5.00">Gold - Add $5.00 <BR>
<INPUT name='NAddOn1' type=checkbox VALUE="Leather Case^10.00"> With Leather Case - Add $10.00 <BR>
<SELECT NAME=AddOn1>
<OPTION selected value="Model: A">Model: A
<OPTION value="Model: B^2.00">Model: B - Add $2.00
<OPTION value="Model: C^3.00">Model: C - Add $3.00
</SELECT> <BR>
<SELECT NAME=Size>
<OPTION selected value="Size: Medium">Size: Medium
<OPTION value="Size: Large">Size: Large
<OPTION value="Size: X Large^5.00">X Large - Add $5.00
</SELECT>
<BR><INPUT TYPE="submit" VALUE="Add to Cart">
</FORM>

----End of cut-and-paste code ---------

Note for FrontPage:
When you highlight html from your browser and cut-and-paste it into FrontPage it transfer's the actual source and not the text on your browser.

Tip for FrontPage: First paste it into notepad or any text editor and then re-highlight the text from the text editor and press ctrl-c then go into FrontPage and paste it into the HTML source tab.

This is what it should look like from your browser. You may edit it to your own actual product/service from your own HTML page.

Product A
Price $50.00
Quantity
Blue Green Gold - Add $5.00
With Leather Case - Add $10.00


Shopping Cart products are setup within your own web pages. You can add items, change prices, etc. with any ascii text editor (ex. Notepad) or any html editor just by editing your web page. The hidden values below are used to identify the products and are passed to the shopping cart. You don't need to run the shopping cart program on your computer. Just this example code will run. When someone clicks the <Add to Cart> button it will link to the CoolCart Shopping Cart Server and calculate the items until they check out. This is the simplest way of getting your shopping cart to work from your page. You may cut-and-paste the following HTML code and insert it anywhere in your web page. Then just plug in your actual product info. Here's what this demo will look like. You may add, edit, or delete size, color, and AddOn.

Notice that you can select and deselect the Leather Case without adding another entry in the cart. This is because it uses NAddOn1 for No Multi AddOn. AddOn1, AddOn2, AddOn3, AddOn4 work the same way Color and Size. If multi=Y then it will keep adding items of different combinations. Multi=N will always overwrite the item in the cart no matter which options they choose.

Each product MUST have a different "ID".
Each product info section must end with </FORM>.
How to Cut-and-Paste