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 5 of 5

Thread: Account Creation

  1. #1
    dellend is offline Junior Member
    Join Date
    Dec 2009
    Posts
    5

    Default Account Creation

    Hi,

    We have an existing AspDotNetStorefront website, and we'd like to handle account creation a little differently. Basically, we'd like to give our users the ability to create accounts without shipping/billing addresses, and to be able to add shipping/billing address at checkout if necessary. Can this be done using appconfigs, or will this require heavy customization?

    Thanks!

    -Dave-

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

    Default

    It would require customization, but I don't think heavy customization. You could just remove all of the address information from the createaccount page so that they weren't required to enter it. During the checkout process, it will prompt them for addresses if there aren't any tied to their account.
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    mgibbs is offline Senior Member
    Join Date
    Jan 2005
    Location
    Orange County, CA
    Posts
    194

    Default

    George, as always, is quite correct.

    It doesn't require heavy lifting at all to accomplish this. We just finished this for another customer with minimal amount of work. The downside is that the flow isn't super intuitive for your customers though without modifying the shipping page.

    We ended up modifying the shipping page to identify if the customer had a shipping address properly defined and if not, seamlessly redirecting the customer to the address page. Otherwise, they just get a message telling them that they need to enter a shipping address. But even this step wasn't too difficult to accomplish.

    And NONE of it required source code license, you can do it all in the code-behind pages (so this won't work with Express version).

    Good luck!
    EMM for AspDotNetStorefront - Communicate effectively with your customers

  4. #4
    dellend is offline Junior Member
    Join Date
    Dec 2009
    Posts
    5

    Default

    Excellent, thanks guys! I appreciate your responses!

    Have a great day!

    -Dave-

  5. #5
    Jeanne is offline Junior Member
    Join Date
    Feb 2009
    Posts
    3

    Default

    Just completed this customization using config parameters and adding some extra logic to the createaccount.aspx.cs and slight mod to the createaccount.aspx, so that the billingpanel can be visible or not. That will control the validations. So no actual code has to be removed from the page. Also this prevents the cart from breaking and ruining the flow. It was also possible to make it so that the feature could be turned on and off easily.