I have created a website with asp.net/vb and need to integrate paypal ipn with the shopping cart that I have created. Can anyone provide some examples or I am willing to pay for someone to show me how to do this. The cart is a basic class with an array of products that is stored within the Session object, all I need is the checkout and payment process, or an idea of how to do it properly.
https://www.paypal.com/us/cgi-bin/webscr?cmd=p/pdn/ipn-codesamples-pop-outside Look at it Paypal provides sample code I hope it helps Regards Alex
Thanks. I decided to not use an IPN handler as it wasn't necessary. Instead I passed all the products and prices using a hidden form to paypal, which is submitted when the 'Checkout' button is clicked. Paypal then handles the rest, providing an invoice to the buyer (for record) and to the seller (for shipment of the items). I was trying to complicate the process too much, when the simplest option was much faster and just as effective.