Error query

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • daver28
    New Member
    • Oct 2008
    • 1

    Error query

    Can anyone help with this error as I know very little ASP and even less French!
    Roughly translated it states 'Index table is outside the limits'

    Objet Request erreur 'ASP 0105 : 80004005'

    Index hors limites

    /templates/UCII_AddToPanie rMultiple.asp, ligne 9

    Un index de tableau est en dehors des limites.


    This error ocurred when attempting to add an item to a shopping cart.
    Please help, thanks.

    Dave
  • iam_clint
    Recognized Expert Top Contributor
    • Jul 2006
    • 1207

    #2
    Is this your code? can I see that line number?


    I don't know french either but I do know programming and i'm pretty sure thats saying index out of range... which means if you have an array such as
    Code:
    arr(0) = "cat"
    arr(1) = "dog"
    arr(2) = "bird"
    
    response.write arr(3)
    this will give you index out of range error because there is not a 3 in that array of strings...

    Comment

    Working...