%
'The following three lines of code are used to ensure that this page is not cached on the client.
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
if session("UID")="" then
Response.Redirect "Default.asp"
Response.End
end if
%>
<%
invoice=Request.QueryString("trxn")
set data = server.createobject("ADODB.RecordSet")
data.activeconnection = strDB
data.source = "SELECT * FROM transactions WHERE invoice LIKE '" & invoice & "'"
data.open
first_name=data("first_name")
last_name=data("last_name")
invoice=data("invoice")
payer_email=data("payer_email")
address_street=data("address_street")
address_city=data("address_city")
address_state=data("address_state")
payment_date=data("payment_date")
payment_status=data("payment_status")
item_name=data("item_name")
quantity=data("quantity")
payment_gross=data("payment_gross")
payment_fee=data("payment_fee")
payment_total=payment_gross - payment_fee
%>
spamBat Product Manager
|
|
 |
Transaction
ID <%=invoice%> |
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. .
|
|
|
Name |
<%=first_name%> <%=last_name%> |
|
Email |
<%=payer_email%> |
|
Address |
<%=address_street%> |
|
City |
<%=address_city%> |
|
State |
<%=address_state%> |
|
Purchase
Date |
<%=payment_date%> |
|
Product |
<%=item_name%> |
| |
Status |
<%=payment_status%> |
|
Quantity |
<%=quantity%> |
|
Gross
Amount |
$<%=payment_gross%> |
| PayPal Fee |
$<%=payment_fee%> |
| Net Amount |
$<%=payment_total%> |
|
. . . . . . . . . . . . . . . . . . . . . . . . . . .
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
. .
|
|