J
Jonathan Wood
In the same online ordering system mention in my other posts, I'm still
trying to decide the best way to track items in the shopping cart, before
the order has officially been placed.
So far, I've been favoring using a combination of Session and ViewState.
However, I know that Sessions can be reset for a variety of reasons and am
wondering if I should be using the database instead.
But is using a database more reliable? Sure, the data would be more secure,
but I need to track an ID that would identify which records were associated
with the current user. If the Session reset, then my SessionID could also
and I'd lose my connection between the current user and the products they
were ordering.
I'd love to hear anyone else's thoughts on this.
Thanks!
Jonathan
trying to decide the best way to track items in the shopping cart, before
the order has officially been placed.
So far, I've been favoring using a combination of Session and ViewState.
However, I know that Sessions can be reset for a variety of reasons and am
wondering if I should be using the database instead.
But is using a database more reliable? Sure, the data would be more secure,
but I need to track an ID that would identify which records were associated
with the current user. If the Session reset, then my SessionID could also
and I'd lose my connection between the current user and the products they
were ordering.
I'd love to hear anyone else's thoughts on this.
Thanks!
Jonathan