Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: When is a customerID created?

  1. #1
    GoodFella is offline Member
    Join Date
    Mar 2009
    Posts
    99

    Default When is a customerID created?

    When does ASPDNSF create a record in the DB for a CustomerID?

    Is it when someone first visits the site? Does this create a session?

    Or is a customerID created when a visitor adds an item to cart?

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    A user gets a customer record (which has an assigned CustomerID) whenever they perform some action that requires a customer record. This includes adding an item to the cart, wishlist, or gift registry, browsing and configuring a kit item page, or creating an account. When an account is created, this becomes the permanent CustomerID for the user any time they log in. This means that you will have anonymous customer records (customer records that were created to tie a customer to some action performed on the site, but never completed the checkout process or registered) in the database that need to be regularly maintained. This can be done by running monthly maintenance from the admin section.
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    GoodFella is offline Member
    Join Date
    Mar 2009
    Posts
    99

    Default

    Thank you George!