473,396 Members | 2,147 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

shopping cart concept

Hi, beginner on asp.net 2.0 C# VS 2005, how can I use the shopping cart
concept on my application? When the user clicks add item, it will be stored
on some storage format, I dont know what is the term: temp/global DataSet,
etc... and it should be read on other web-form to checkout the items...

Can you point me to the right direction?

Thank you very much!
Jun 27 '08 #1
3 2866
"Paulo" <er********@terra.com.brwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
Hi, beginner on asp.net 2.0 C# VS 2005, how can I use the shopping cart
concept on my application? When the user clicks add item, it will be
stored on some storage format, I dont know what is the term: temp/global
DataSet, etc... and it should be read on other web-form to checkout the
items...
Basically, you have several choices depending on how you've designed your
web app, and what resources you have at your disposal...

As you've discovered, the information in the shopping cart needs to be
persisted (i.e. "remembered") across multiple pages. Therefore, you can't
use ViewState. However, it's vital that different concurrent users don't get
their shopping carts mixed up, so you can't use the Application object
either.

Does your web app use a back-end database? If so, then you can use that to
store the shopping cart. This will also have the advantage that users could
"save" their cart and come back to it later. Some people like to offer this
facility...

Alternatively, even if your web app does use a database, you might prefer to
persist the cart information in the Session object. This is very simple to
do. Obviously, if you use the Session object, then any information stored in
it will be lost when the Session ends either because the user has logged out
and you've torn down the Session in code, or because it has timed out...

A third alternative would be to store the cart data in a cookie. However,
this would obviously not work if the user has disabled cookies in their
browser - some users do this for (supposed) security reasons.

Personally, I use the Session object for shopping cart. I use a
Dictionary<int, intgeneric for this. The Dictionary is keyed on the
product's unique identifier, and the value is the number of items purchased.
This has the advantage of keeping the object persisted in Session as small
as possible.
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jun 27 '08 #2
Mark, what do you think about this solution? Good or bad?

http://www.sitepoint.com/article/net...art-datatables

Thank you very much!

"Mark Rae [MVP]" <ma**@markNOSPAMrae.netescreveu na mensagem
news:e6**************@TK2MSFTNGP02.phx.gbl...
"Paulo" <er********@terra.com.brwrote in message
news:%2****************@TK2MSFTNGP06.phx.gbl...
>Hi, beginner on asp.net 2.0 C# VS 2005, how can I use the shopping cart
concept on my application? When the user clicks add item, it will be
stored on some storage format, I dont know what is the term: temp/global
DataSet, etc... and it should be read on other web-form to checkout the
items...

Basically, you have several choices depending on how you've designed your
web app, and what resources you have at your disposal...

As you've discovered, the information in the shopping cart needs to be
persisted (i.e. "remembered") across multiple pages. Therefore, you can't
use ViewState. However, it's vital that different concurrent users don't
get their shopping carts mixed up, so you can't use the Application object
either.

Does your web app use a back-end database? If so, then you can use that to
store the shopping cart. This will also have the advantage that users
could "save" their cart and come back to it later. Some people like to
offer this facility...

Alternatively, even if your web app does use a database, you might prefer
to persist the cart information in the Session object. This is very simple
to do. Obviously, if you use the Session object, then any information
stored in it will be lost when the Session ends either because the user
has logged out and you've torn down the Session in code, or because it has
timed out...

A third alternative would be to store the cart data in a cookie. However,
this would obviously not work if the user has disabled cookies in their
browser - some users do this for (supposed) security reasons.

Personally, I use the Session object for shopping cart. I use a
Dictionary<int, intgeneric for this. The Dictionary is keyed on the
product's unique identifier, and the value is the number of items
purchased. This has the advantage of keeping the object persisted in
Session as small as possible.
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jun 27 '08 #3
"Paulo" <er********@terra.com.brwrote in message
news:uQ**************@TK2MSFTNGP04.phx.gbl...

[top-posting corrected]
>Personally, I use the Session object for shopping cart. I use a
Dictionary<int, intgeneric for this. The Dictionary is keyed on the
product's unique identifier, and the value is the number of items
purchased. This has the advantage of keeping the object persisted in
Session as small as possible.

Mark, what do you think about this solution? Good or bad?

http://www.sitepoint.com/article/net...art-datatables
I'm sure it will work...
--
Mark Rae
ASP.NET MVP
http://www.markrae.net

Jun 27 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Don Grover | last post by:
I am retrieving costs and product id's from a sql db. and need to build a shopping cart around it. How do I store the selected items and qty req so I can move into another catalog and total up as...
2
by: Paul Bruneau | last post by:
Hi, I hope someone can help me make a working shopping cart, as a learning tool. If I have a "Product Demo" html page with a "Buy Me" button, there must be a simple javascript method of...
1
by: madison | last post by:
Hi, I am trying to start a website using paypals shopping cart function. If i have 10 items and they sell out, how do I make it so the item is then listed as sold out. The next person would not...
1
by: Adil Akram | last post by:
I have created a site shopping cart in ASP.net. I am using ASP session object's SessionID on non SSL connection to track session. While adding products to cart DB I insert product and SessionID...
2
by: G.E.M.P | last post by:
High Level Session Handling Design for a Shopping cart 0) What am I missing? 1) How does OSCommerce do it? I'm thinking about building a shopping cart from scratch, using a library of dynamic...
7
by: isaac2004 | last post by:
hi i have a basic asp page that acts as an online bookstore. on my cart page i am having trouble generating 3 numbers; a subtotal, a shipping total, and a final price. here is my code i would...
1
by: jecha | last post by:
I'm implementing a shopping cart but am having a problem in checking out a person who has added item in his/her shopping busket.The code for the checkout.php script is given below <?...
15
gregerly
by: gregerly | last post by:
Hello, I once again turn to this community of genius' for some help with a problem. I've got a shopping cart (which is working well so far) that I will be implementing all kinds of AJAX...
1
by: BenKen | last post by:
Hi all pls I'm having great difficulty in making my shopping cart work. I am a newbie in php with little understanding of it. Add to cart button doesn't work and shopping cart in general doesn't. Pls...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.