Posted on: 4/9/2014 4:15:04 AM | Views : 454

Hi,
I implemented recurring payment with ExpressCheckOut. All gone success. and I could create recurring profile and all. The only problem with this one is, its not showing  an order summary. Recurring payment will not show any order summary??? following is my code for SetExpressCheckOut
Public Function SetExpressCheckout(ByVal amt As String, ByRef token As String, ByRef retMsg As String) As Boolean If (bSandbox) Then pEndPointURL = pEndPointURL_SB host = host_SB End If Dim returnURL As String = ConfigurationManager.AppSettings("SuccessURL").ToString() Dim cancelURL As String = ConfigurationManager.AppSettings("FailedURL").ToString() Dim encoder As New nvpCodec() encoder("METHOD") = "SetExpressCheckout" encoder("RETURNURL") = returnURL encoder("CANCELURL") = cancelURL e ...

Go to the complete details ...