How can i Integrate PayPal with ASP.NET?

后端 未结 5 1095
死守一世寂寞
死守一世寂寞 2020-12-02 13:50

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

相关标签:
5条回答
  • 2020-12-02 14:00

    You can give this Paypal NVP API example in C# (asp.net) a try: http://brad.w3portals.com/2008/02/paypal-nvp-api-example-in-c-aspnet.html

    Tries to give a simple example to get you up and running quick. The paypal SDK example are not that great. Cheers.

    0 讨论(0)
  • 2020-12-02 14:03

    Read paypal integration in asp.net from Rick Strahl

    Update: There is PayPal Helper for web matrix that could be easily integrated to asp.net mvc or asp.net web forms.

    0 讨论(0)
  • 2020-12-02 14:10

    Michael987 put together posts from different forums to come up with a solution that worked well for him.

    NathanRidley integrated the codes from the link above and released an open source library on Github

    0 讨论(0)
  • 2020-12-02 14:12

    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.

    0 讨论(0)
  • 2020-12-02 14:17

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

    0 讨论(0)
提交回复
热议问题