SELL YOUR ITEM
THANK YOU FOR YOUR PAYMENT
<%'######################### CONTENT STARTS ###########################%>
<%
'** Decode the crypt field that was sent back to us **
Decoded=SimpleXor(Base64Decode(Request.QueryString("Crypt")),EncryptionPassword)
'** Split out the useful information into variables we can use **
VendorTxCode=getToken(Decoded,"VendorTxCode")
Status=getToken(Decoded,"Status")
VPSTxID=getToken(Decoded,"VPSTxId")
TxAuthNo=getToken(Decoded,"TxAuthNo")
Amount=getToken(Decoded,"Amount")
AVSCV2=getToken(Decoded,"AVSCV2")
' ** protocol 2.22 fields
AddressResult = getToken( Decoded, "AddressResult" )
PostCodeResult = getToken( Decoded, "PostCodeResult" )
CV2Result = getToken( Decoded, "CV2Result" )
GiftAid = getToken( Decoded, "GiftAid" )
VBVSecureStatus = getToken( Decoded, "3DSecureStatus" )
CAVV = getToken( Decoded, "CAVV" )
DeliveryAddress = getToken( Decoded, "DeliveryAddress" )
DeliveryPostCode = getToken( Decoded, "DeliveryPostCode" )
' Update the order details
SQLString = "UPDATE Forces_Items SET Status='"&Status&"', TxAuthNo= '"&TxAuthNo&"', "&_
" VPSTxID='"&VPSTxID&"', AVSCV2 ='"&AVSCV2&"', AddressResult='"&AddressResult&"', "&_
" PostCodeResult='"&PostCodeResult&"', CV2Result ='"&CV2Result&"', CAVV='"&CAVV&"', Paid='yes', StatusDetail='"&StatusDetail&"' "&_
" WHERE ItemID=" & VendorTxCode
MyConn.Execute(SQLString)
%>
| Thank You! |
Thank you for advertising your item on our noticeboard.
Click here to view your listing.
|
| If you have any queries about your transaction, please phone our purchase helpline on +44 (0)79696947976 quoting reference <%=VendorTxCode%>. |
<%'######################### CONTENT ENDS ###########################%>