I am looking for a nice control that allows me to have a shopping cart on my webpage.
Requirements:
- Easy to implement. I want to add items into the cart from everywhere. Like
mycart.Add(new CartItem("Name", "Description", Price"))
- Implemented shopping cart overview with the ability to delete previous added items.
- Allows connection to Paypal
Can anybody recommend such a control?
(I've already found http://stackoverflow.com/questions/1522832/looking-for-a-lightweight-asp-net-shopping-cart-that-is-paypal-compatible but the posted solution "shopping cart .net" does not seem to fulfill the third requirement, If I'm not mistaken.)