<% '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 'Copyright (c) CCAvenue . 2003 - 2005 -- All Rights Reserved 'PROJECT : CCAvenue World 'MODULE : CC-World Transaction Page 'FILE : checkout.asp 'DATE CREATED : September 25, 2003, 6:55:25 PM 'DESCRIPTION : This file is used to send transaction parameters to CCAvenue. ' This is the sample Checkout Page ASP script. It can be directly used for integration with CCAvenue if your ' application is developed in ASP. You need to simply change the variables to match your variables as well ' as insert routines (if any) for handling a successful or unsuccessful transaction. '%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %> Sub-Merchant Checkout Page <% Merchant_Id = "osmhand6754" ' This id(also User_Id) available at "Generate Working Key" of "Settings & Options" Amount = "50" ' Your script should substitute the amount here in the quotes provided here Order_Id = "222" ' Your script should substitute the order description here in the quotes provided here currency_type = "USD" ' Transaction Currency Redirect_Url = "http://www.osmhandicraft.com/redirecturl.asp" ' Your redirect URL where your customer will be redirected after authorisation from CCAvenue WorkingKey = "12luo9bdp5a274609x03p3aw9gkijw8f" ' Put in the 32 bit alphanumeric Working key in the quotes provided here.Please note that get this key login to your CCAvenue merchant account and visit the "Generate Working Key" section at the "Settings & Options" page. Checksum = getChecksum(Merchant_Id, Order_Id, Amount, WorkingKey,currency_type,Redirect_Url) %>