Just a very quick one now. I'm using ASP to make a shopping cart, am using a SQL server and have been going over a several examples. I can't make my mind up which way to code it (E.g. which way is best):
Thanks
- Using tables (E.g. inserting the session id and product ID and quantity into a temp table, probs the slowest and most inefficient but simplist)
- Using ASP's dictionary object with an Array (Keys, value pairs etc)
- Or using XML and writing the minimal details to a XML file.
Thanks