tags:

views:

1414

answers:

3

How can i integrate PayPal with ASP.NET, do you have any sites that can get me started or links to any tutorials?

+6  A: 

You'll have to use Paypal IPN for that. My site runs with Perl, but the way it basically works is as follows:

  1. Customer fills out an order form at my site with their name, address, email.
  2. Customer is being redirected to Paypal
  3. Upon successful payment via Paypal, Paypal calls my IPN-compliant script
  4. My script sends me an e-mail notifying me about the completed order

If the customer does not pay within 30 minutes or so, my database also sends him a reminder with a Paypal payment link for the respective order.

Adrian Grigore
+5  A: 

Read paypal integration in asp.net from Rick Strahl

suhair
+2  A: 

Download the ASP.NET E-Commerce Start Kit, which is now "DashCommerce". It has PayPal implemented. http://dashcommerce.org/

Junto