uShopCart.class


The uShopCart applet allows you to add a "Shopping Cart" to your web pages. The shopping cart lets your customers see the items which they select. uShop has one shopping cart applet that can be displayed in several different ways based on how big you want it to appear and how many details you want to display for each product. Available displays are: "FULL", "LARGE", "MEDIUM", "SMALL", "NAMES", "COUNT", and "ICON". The default value is "ICON".

Parameters
Note: Optional parameters are in italics


Example 1 ("FULL" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=500 HEIGHT=300>
 &ltPARAM NAME=display    VALUE="FULL">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=background VALUE="white">
 &ltPARAM NAME=listcolor  VALUE="white">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 2 ("LARGE" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=450 HEIGHT=300>
 &ltPARAM NAME=display    VALUE="LARGE">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=background VALUE="white">
 &ltPARAM NAME=listcolor  VALUE="white">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 3 ("MEDIUM" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=420 HEIGHT=300>
 &ltPARAM NAME=display    VALUE="MEDIUM">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=background VALUE="white">
 &ltPARAM NAME=listcolor  VALUE="white">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 4 ("SMALL" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=150 HEIGHT=165>
 &ltPARAM NAME=display    VALUE="SMALL">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=listcolor  VALUE="white">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 5 ("NAMES" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=125 HEIGHT=165>
 &ltPARAM NAME=display    VALUE="NAMES">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=listcolor  VALUE="white">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 6 ("COUNT" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=50 HEIGHT=20>
 &ltPARAM NAME=display    VALUE="COUNT">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=background VALUE="153,204,255">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>


Example 7 ("ICON" Display Type)


 &ltAPPLET CODE = "uShopCart.class" WIDTH=50 HEIGHT=20>
 &ltPARAM NAME=display    VALUE="ICON">
 &ltPARAM NAME=money_sign VALUE="$">
 &ltPARAM NAME=background VALUE="153,204,255">
 &ltPARAM NAME=textcolor  VALUE="black">
 </APPLET>