Author: ssenth1985 | Posted on: 4/28/2010 8:43:19 AM | Views : 1024

Hello all, this is my very first post.I ve a very strange problem in my asp.net shopping cart applicaition. 
    Every new item order will be stored as a generic list in class file as below
      Dim NewItem As New CartItem()       NewItem.ProdID = ProdID NewItem.Quantity = Quantity
NewItem.Price = Price
NewItem.ProdDesc = ProdDesc
NewItem.Comments = Comments
ShoppingCart.Items.Add(NewItem)
where CartItem is ...

Go to the complete details ...