Wrox Programmer Forums
|
ASP.NET 3.5 Basics If you are new to ASP or ASP.NET programming with version 3.5, this is the forum to begin asking questions. Please also see the Visual Web Developer 2008 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 3.5 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 23rd, 2009, 08:49 AM
Authorized User
 
Join Date: Jun 2008
Posts: 17
Thanks: 1
Thanked 0 Times in 0 Posts
Default shopping cart

hi, i want to know the correct ways to build shopping cart. There got many method to store shopping cart item that customer press the "add to cart button". The method i know is
1. Store in session / session with array or datatable ...
This method disadvantage is when too many people visit your then the web become slow because too many session. Also session unstable like session timeout faster than setting in web.config

2. Store in cookies.
Cookies disadvantage is when the client disable cookies, then every thing cannot work. if i'm not wrong...

3. store in temporary table.
There got many articles do not recommend store in table.

This a few that i know ... so i need to know which method or other than this 3 method is the safe to implement? Thank...
 
Old April 23rd, 2009, 02:07 PM
Lee Dumond's Avatar
Wrox Author
 
Join Date: Jan 2008
Posts: 923
Thanks: 12
Thanked 166 Times in 162 Posts
Default

You are correct about Session and Cookie not being very scalable.

The most scalable e-commerce apps persist the shopping cart to the database. You can serialize it and store it as a blob, perhaps using the Profile system. You can also store it to a custom table.

If you do this, you'd want to make good use of caching, You would search the cache for the cart whenever required, and only fetch from the database if the cache is empty. You would, of course, purge the cache when items are added or removed.
__________________
Visit my blog at http://leedumond.com
Follow me on Twitter: http://twitter.com/LeeDumond

Code:
if (this.PostHelpedYou)
{
   ClickThanksButton(); 
}
The Following User Says Thank You to Lee Dumond For This Useful Post:
badboy1 (April 24th, 2009)
 
Old April 24th, 2009, 09:32 AM
Authorized User
 
Join Date: Jun 2008
Posts: 17
Thanks: 1
Thanked 0 Times in 0 Posts
Default

Thank Lee Dumond. Now I try check method that suggest like store in table,blob,profile system and cache. Thank for show some way and scalable shopping cart in database.





Similar Threads
Thread Thread Starter Forum Replies Last Post
shopping cart keyvanjan Classic ASP Basics 1 January 9th, 2007 10:16 PM
Shopping Cart seannie ASP.NET 2.0 Basics 0 December 12th, 2006 10:28 AM
Shopping Cart inkrajesh ASP.NET 1.0 and 1.1 Basics 2 February 28th, 2006 03:08 AM
shopping cart isheikh BOOK: Beginning PHP4/PHP 5 ISBN: 978-0-7645-4364-7; v5 ISBN: 978-0-7645-5783-5 2 October 8th, 2004 04:20 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.