Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PayPal Sandbox URL for testing 1

Status
Not open for further replies.

jasonhuibers

Programmer
Sep 12, 2005
290
0
0
CA
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 & "&notify_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 & "&currency_code=" & currency_type
response.redirect url
%>
 
You need to sign up to Paypal sandbox to use it. Start here

I notice that you have asked 103 questions on these forums, but only had 1 answer that you found to be useful. If you have really only had one useful answer then read faq222-2244 to see how to ask better questions.
If you have had useful answers then read faq222-2244 to see how to acknowledge them.

If you want the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
 
John...

Tek-Tips is absolutely amazing and extremely resourceful! Yes, you are right I should take the time to acknowledge useful answers! I will try to make it a habit!

Thanks John
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top