Final Order

Description: <%= Request("x_description")%>
Total Amount : <%= Request("x_amount") %>

<% Dim sequence Dim amount Dim ret ' *** IF YOU WANT TO PASS CURRENCY CODE uncomment the next 2 lines ** ' Dim currencycode ' Assign the transaction currency (from your shopping cart) to currencycode variable ' Trim $ dollar sign if it exists amount = Request("x_amount") If Mid(amount, 1,1) = "$" Then amount = Mid(amount,2) End If ' Seed random number for more security and more randomness Randomize sequence = Int(1000 * Rnd) ' Now we need to add the SIM related data like fingerprint to the HTML form. ret = InsertFP (loginid, txnkey, amount, sequence) ' *** IF YOU ARE PASSING CURRENCY CODE uncomment and use the following instead of the InsertFP invocation above *** ' ret = InsertFP (loginid, txnkey, amount, sequence, currencycode) ' Insert other form elements similiar to legacy weblink integration Response.Write ("" & vbCrLf) Response.Write ("" & vbCrLf) Response.Write ("" & vbCrLf) ' *** IF YOU ARE PASSING CURRENCY CODE uncomment the line below ***** ' Response.Write ("" & vbCrLf) %>