Posted on: 4/8/2014 7:10:51 AM | Views : 392

Hi,
I am very new to the Paypal payments.I tried to do the recurring payment using Express check out. and following are the code I tried to do the same.
Public Sub ExpressCheckOUt() Dim redirecturl As String = "" 'Mention URL to redirect content to paypal site redirecturl += "https://api-3t.sandbox.paypal.com/nvp" redirecturl += "&METHOD=setExpressCheckout" redirecturl += "&RETURNURL=" + ConfigurationManager.AppSettings("SuccessURL").ToString() redirecturl += "&CANCELURL=" + ConfigurationManager.AppSettings("FailedURL").ToString() redirecturl += "&PAYMENTACTION=Sale" redirecturl += "&CURRENCYCODE=USD" redirecturl += "&BUTTONSOURCE=ECWizard" redirecturl += "&USER=" + Configu ...

Go to the complete details ...