jasonhuibers
Programmer
I will use this code but need to know the URL for the sandbox site?
<%@ Language=VBScript %>
<%
' paypal account informations
my_paypal_email = "myemail@mydomain.com"
' my domain informations
return_page = " notify_page = " cancel_page = "
' my product informations
item_price = "50"
item_name = "My Product"
item_quantity = "1"
item_cod = "12345"
currency_type = "USD"
' call paypal page
url = " url = url & "?business=" & my_paypal_email
url = url & "&return=" & return_page
url = url & "¬ify_url=" & notify_page
url = url & "&cancel_return=" & cancel_page
url = url & "&quantity=" & item_quantity
url = url & "&item_name=" & replace(item_name," ","%20")
url = url & "&item_number=" & item_cod
url = url & "&amount=" & item_price
url = url & "&no_shipping=1"
url = url & "&no_note=0"
url = url & "¤cy_code=" & currency_type
response.redirect url
%>
<%@ Language=VBScript %>
<%
' paypal account informations
my_paypal_email = "myemail@mydomain.com"
' my domain informations
return_page = " notify_page = " cancel_page = "
' my product informations
item_price = "50"
item_name = "My Product"
item_quantity = "1"
item_cod = "12345"
currency_type = "USD"
' call paypal page
url = " url = url & "?business=" & my_paypal_email
url = url & "&return=" & return_page
url = url & "¬ify_url=" & notify_page
url = url & "&cancel_return=" & cancel_page
url = url & "&quantity=" & item_quantity
url = url & "&item_name=" & replace(item_name," ","%20")
url = url & "&item_number=" & item_cod
url = url & "&amount=" & item_price
url = url & "&no_shipping=1"
url = url & "&no_note=0"
url = url & "¤cy_code=" & currency_type
response.redirect url
%>