Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Adding Products ? for e-Commerce

Status
Not open for further replies.

svagelis

Programmer
May 2, 2001
121
GR
I m developing an e-commerce application. The objective is when user clicks on an product i want to find a way to add this product to a shopping-basket(ID,Price,Quantity etc). I was thinking that this basket could be a collection of objects(defined by me) and each time user clicks on a product i could execute
Mineobj.Add var1,var2..... and update my collection.

Well those data will be sent my customer's email.

Well i cant use COM objects (Developed in VB) because the server i m uploading is not dedicated.
Can you think anything? Any other suggestions?
Thanks in Advance....

 
maybe save it in a session? like this..


Session("#ID|Price|Quantity")


Then use the split function to use the data..



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top