The Billing Information Page
The billing information page displays all the items in the basket including total costs (shipping & sales tax). The ability to ability to edit or enter shipping addresses is also provided.
The primary function of this page is to enter credit card or coupon information.
The "Instant Checkout" option displayed below is automatically display or hidden dependent upon whether the customer has credit card billing information on file from a prior order (and also only if Basket Configuration has enabled QuickBuy for this storefront).
The best way to get a feel for how this page and the entire SendSafe system works is to play with a working system. Feel free to place orders into the SendSafe system running on the C Prompt web site. You can place items in the shopping basket starting with either of the pages listed below. The buysample page is a page which contains various pre-configurations of the BuyButtons available. Since the source code is provided you can create any kind of buying page possible.
Remember not to use a real credit card number. This is a fully functioning system. Use one of these test credit card numbers to complete your orders (no charges will complete / all orders will be declined).
Configuration note:
You can select the database column that is displayed for
"item name" inside the shopping basket. The database column defaults to
NickName. To set the database column modify the subroutine call
SetItemDisplayField()
in
the asp file that contains the checkout page logic (typically: SendSafe.checkout.asp or Store.checkout.asp). Set the
subroutine parameter to the name of a database column (from the items table) that you want to display.
' This is demo code to show how to control what is displayed for the product name.
' This OPTIONAL variable holds Items table column name which will be used to display
' the "Item Name" in the entry form
' If this variable is empty THEN the name will be the FullName
'SetItemDisplayField "NickName"
Below is an example of how the Billing info page looks:
(Actual file: SendSafe.Checkout.asp)