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: checkout question

  1. #1
    dhs is offline Member
    Join Date
    Feb 2009
    Posts
    35

    Default checkout question

    How can we have the customer forwarded to the shipping options page after they sign in during the checkout process? Right now when they sign in they take a step back to the shopping cart and have to go forward again to proceed

    thanks

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    That's handled by a ReturnURL. Open CheckoutAnon.aspx.cs file, go to btnSignInAndCheckout_Click() method, and do the change below:
    Code:
    From:
     string sReturnURL = "shoppingcart.aspx";
    
    ...change it to:
     string sReturnURL = "checkoutshipping.aspx";

  3. #3
    dhs is offline Member
    Join Date
    Feb 2009
    Posts
    35

    Default

    That worked perfectly, thank you.

    Another question about the checkout. We have an option to checkout without creating an account. It differs from the checkout while creating an account page by not having the password input fields. However, I noticed when you do the no account option everything go ok, you hit proceed and it reloads the same page createaccount.aspx but this time forces you to create a password. This does not make much sense. I imagine we have done something wrong with the implementation of the no account checkout.

    I can provide more info, but any insight would be helpful

    thank you