Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for a lightweight ASP.net shopping cart that is PayPal compatible [closed]

I am currently developing a simple eCommerce site. I am looking for a lightweight non hosted ASP.net shopping cart solution that needs to

  • Be able to talk to PayPal
  • Integrate with current site
  • Preferably handle PayPal's Instant Payment Notification

The current site uses PayPal buy it now buttons or PayPal's add to cart buttons. The issue I have with PayPal's cart is that it allows buyers to update the quantities of items in their cart prior to checkout which is unacceptable because each item in this site is unique (i.e. quantity 1).

I wrote a handler for PayPal's Instant Payment Notification in order to remove an item from the site when it was sold but it is pretty inflexible and I don't have time or money to write a good one so something that handles that would be great :)

Anybody used any non hosted ASP paypal shopping carts before and have some recommendations?

like image 402
Dustin Hodges Avatar asked Oct 05 '09 22:10

Dustin Hodges


2 Answers

There's always:

Shopping Cart.NET

although this may or may not be as "lightweight" as you'd like.

Alternatively, The Beerhouse has an e-commerce "module" containing a shopping cart with PayPal integration, although "The Beerhouse" itself is a complete application, and you would need to refactor out the shopping cart code for your own uses. It is much more "lightweight", however. (Note that the most recent release of The Beerhouse is for ASP.NET MVC whereas older releases are for WebForms).

like image 156
CraigTP Avatar answered Nov 15 '22 11:11

CraigTP


You can always pick out parts of Shopping Cart .NET to use on your site. You can use InvertedSoftware.ShoppingCart.Intergration for PayPal and InvertedSoftware.ShoppingCart.BusinessLayer for the cart. I can point you in the right direction if you like since i wrote it.

Gal

like image 1
Gal Ratner Avatar answered Nov 15 '22 13:11

Gal Ratner