| Since e-Com Manager handles the order from the
"Buy" buttons off of your site, you will have to insert
the following html code:
"BUY" Button HTML Code
If you are going to
use an image as a "buy now" button:
<FORM
action="cart/shopping.asp"
method="post"> <INPUT
NAME="addtocart" type=IMAGE src="Image Name.jpg"
width="55" height="32"
alt=""</INPUT> <INPUT
NAME="action" TYPE="Hidden"
VALUE="add"</INPUT> <INPUT
NAME="count" TYPE="Hidden"
VALUE="1"</INPUT> <INPUT
NAME="item" TYPE="Hidden" VALUE="Product
Code"</INPUT> <INPUT
NAME="cn" TYPE="Hidden" VALUE="Company
Code"</INPUT> </FORM>
OR....
If
you are going to use a standard button to submit
orders:
<FORM
action="cart/shopping.asp"
method="post"> <INPUT
NAME=submit type=submit value="Text on
Button"</INPUT> <INPUT
NAME="action" TYPE="Hidden"
VALUE="add"</INPUT> <INPUT
NAME="count" TYPE="Hidden"
VALUE="1"</INPUT> <INPUT
NAME="item" TYPE="Hidden" VALUE="Product
Code"</INPUT> <INPUT
NAME="cn" TYPE="Hidden" VALUE="Company
Code"</INPUT> </FORM>
"View
Cart" Button HTML Code
To have your customers be
able to view their shopping cart without having any
products added to the cart:
Using a standard
submit button:
<FORM
action="cart/shopping.asp"
method="post"> <INPUT
NAME=submit type=submit value="Text on
Button"</INPUT> <INPUT
NAME="action" TYPE="hidden"
VALUE="viewcart"> <INPUT
NAME="cn" TYPE="Hidden" VALUE="Company
Code"> </FORM>
OR....
Using
an image as a button as a "View Cart"
button:
<FORM
action="cart/shopping.asp"
method="post"> <INPUT
NAME="viewcart" type=IMAGE src="IMAGE NAME.gif"
alt="View Shopping Cart
Information"> <INPUT
NAME="action" TYPE="hidden"
VALUE="viewcart"> <INPUT
NAME="cn" TYPE="Hidden" VALUE="Company
Code"> </FORM>
|