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

Thread: v9 product page problem

  1. #1
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default v9 product page problem

    I use ML 9.

    Appears a blank scroll down box on the top left corner of the product page.

    see this link http://www.isoundstore.com/p-2-isoun...-jazzer-5.aspx

    no idea what's wrong.

    Jerry

  2. #2
    hunter0781 is offline Member
    Join Date
    Apr 2010
    Posts
    34

    Default

    Your link doesn't resolve....

  3. #3
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    http://www.isoundstore.com/p-1-isoun...-rocker-7.aspx

    or enter isoundstore.com and click any product.

    thank you!
    Last edited by boomingisland; 09-13-2010 at 03:02 PM.

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

    Default

    Use a firebug, right click on that blank scroll bar, and inspect element. You can see this particular line:

    Code:
    <iframe width="400" height="100" frameborder="0" scrolling="yes" src="empty.htm" noresize="" marginwidth="0" marginheight="0" vspace="0" hspace="0" id="RateCommentFrm" name="RateCommentFrm"></iframe>
    it seems that you've specified that somewhere in your template.master (template.ascx).

  5. #5
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    This is fresh install. I only modified style.css and AppConfig.

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

    Default

    Then, it could be a problem with the modifications you made in style.css. Try to roll back those changes, or perhaps, back it up and use the stock file instead. We'll see if that's really the issue.

  7. #7
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    i replaced new style.css file and template.master file.
    still have same problem.

  8. #8
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    View your template and XML package

    C#/VB.NET Code:
    <div id="RateCommentDiv" name="RateCommentDiv" style="position:absolute; left:0px; top:0px; visibility:visible; z-index:2000; ">
    <
    iframe name="RateCommentFrm" id="RateCommentFrm" width="400" height="100" hspace="0" vspace="0" marginheight="0" marginwidth="0" frameborder="0" noresize="" scrolling="yes" src="empty.htm"></iframe>
    </
    div
    That is the code causing the problem. Just remove it and your webpage is fine.
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  9. #9
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    can you tell exact name of template and XML package?
    I couldn't find the code in template.master and XML package.
    thank you!
    jerry

  10. #10
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    the code is at the bottom of your product.variantsintableexpanded.xml.config XML package.

    just before
    HTML Code:
    <script type="text/javascript"> 
    function RateComment(ProductID,MyCustomerID,MyVote,RatersCustomerID)
    	{
    	RateCommentFrm.location = 'RateComment.aspx?Productid=' + ProductID + '&VotingCustomerID=' + MyCustomerID + '&MyVote=' + MyVote + '&CustomerID=' + RatersCustomerID
    	}
    </script>
    the XML package is found under the XMLPackages folder
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  11. #11
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    the code isn't there.
    I am sure this problem is caused by Rating function.
    If I turn the Rating off, the blank frame is gone too.

  12. #12
    boomingisland is offline Member
    Join Date
    Jun 2006
    Posts
    37

    Default

    problem is fixed. thank you for help!