How do you create a shopping basket using VB.NET?

Mayur

New member
I have a shopping page which contains a grid view to show products and a data view to output products from the grid view when productis added to cart. It only adds one product, if another product is added, it replaces the previous product This is my coding:

Protected Sub GridView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridView1.SelectedIndexChanged
DetailsView1.Visible = True
End Sub

How do I create a shopping basket when I can add multiple products and remove products from the cart.
 
Back
Top