views:

33

answers:

2

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.)

A: 

Do you want just a component that provides cart functions and its database? Do you need out of the box UI? I'm just confused because it seems that you already have a website.

Tiendq
I thought I would be able to use a shopping component that also has build in shopping cart functionaly as a asp.net control and paypal integration. After searching for hours I decided to write my own shoppingcart and just look for a paypal component
citronas
A: 

It decided to build my custom shopping cart and used a paypal component. I've decided to stick to Spicelogic Paypal component

citronas