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

Thread: Shipping Estimator

  1. #1
    kyleeeeee is offline Member
    Join Date
    Dec 2010
    Posts
    34

    Default Shipping Estimator

    Hello,

    I have a question about the Shipping Estimator.

    Is it possible, once the customer clicks on Shipping Estimate and the page refreshes with the estimate, to have something show somewhere on the page that they received a shipping estimate? Ideally, in a red color similar to how you would receive an error if you missed something.

    Our problem is that since the page refreshes, a customer cannot see right away if they received an estimate and they need to scroll down. Just for usability sake, it would be nice for the customer that they received an estimate.


    Thanks for any help.

  2. #2
    ZachJ85 is offline Senior Member
    Join Date
    Apr 2010
    Location
    Philadelphia, PA
    Posts
    99

    Default

    SQL 2008, Visual Studio 2010
    Source: C#
    Version: AspDotNetStorefront ML 8.0.1.1/8.0.1.1
    Framework: .Net 4.0 (Running)

  3. #3
    kyleeeeee is offline Member
    Join Date
    Dec 2010
    Posts
    34

    Default

    No, this is on shoppingcart.aspx, before checkout.

  4. #4
    jsimacek is offline Senior Member
    Join Date
    Dec 2008
    Location
    Phoenix, AZ
    Posts
    373

    Default

    Sure, yes, it's possible to show big red text at top and even use javascript to auto-scroll down to the estimator area... (that wouldn't take long to do so contact jsimacek@compunix.us for a quote if you like)
    Jan Simacek - Compunix, LLC
    AspDotNetStorefront trusted Devnet Partner and Reseller since 2005

    AspDotNetStorefront Mods and Add-Ons at http://www.ecommercecartmods.com/
    - Searching, Filtering and Sorting (like cSearch, Dealer Locator, Price Ranges, Blog)
    - Reports (like Cart Abandonment and Net Sales)
    - Customer Experience (like Question/Answers)
    - Site and Data Management (like Entity Product Mapper, Bulk Updaters, Make/Model/Year filters)

  5. #5
    kyleeeeee is offline Member
    Join Date
    Dec 2010
    Posts
    34

    Default

    Thanks, at least I know it can be done.

    Unfortunately, the client really doesn't want to spend additional money, so I will have to try to talk them out of it.

    Thank you.

  6. #6
    Soulfire86 is offline Junior Member
    Join Date
    Jun 2010
    Posts
    11

    Default

    No need for all of that....just simply make the page maintain position on postback, that way when it refreshes, the page will still be in the same scrolled position as before and they will see the estimate.

    Go to the top of the ShoppingCart.aspx file and where it says:

    Code:
    <%@ Page Language="c#" Inherits="AspDotNetStorefront.ShoppingCartPage" CodeFile="ShoppingCart.aspx.cs" %>
    add in MaintainScrollPositionOnPostback="True" therefore making it

    Code:
    <%@ Page Language="c#" Inherits="AspDotNetStorefront.ShoppingCartPage" CodeFile="ShoppingCart.aspx.cs"  MaintainScrollPositionOnPostback="True" %>
    8.0.1.1 ML C# - Production
    9.0.1.2 ML C# - Development