CFF KB - Carrz-Fox-Fire Promotions Knowledge Base

CFF KB is all about 1 thing: The Sharing of Knowledge and the Power we gain from it.
  • Breadrumbs:
  • Microsoft VBScript runtime error '800a01f9' Invalid or unqualified reference

  • CFF Knowledge Base - Share With Facebook CFF Knowledge Base - Share on Twitter CFF Knowledge Base - Share on Reddit CFF Knowledge Base - Share on Digg It CFF Knowledge Base - Share on Stumble Upon It CFF Knowledge Base - Share on Delicious
    Share With Friends (Updated 6-8-2010)
  • Article ID:
    132
  • Date Created
    Monday, April 25, 2011
  • Last Updated
    Monday, April 25, 2011
  • This Article Has been Viewed
    4596 times
  • Short Desc
    Writing a LOOP command, make sure that you do not have no spaces in your code.
  • Details
    When you write a LOOP, you need to make sure that there are no spaces in your code. If there is, then you will receive the following error.

     
    Microsoft VBScript runtime error '800a01f9'
    Invalid or unqualified reference
    /data.asp, line 27
    rsProCom .movenext
  • Recreate Issue
    To recreate this issue.

    When you write your Loop, and you accidentally space between your RecordSet and your MoveNext, this error will happen.

    Example:
    <%
    while not rsProCom.eof
    ' your data to display here
    rsProCom .movenext
    wend
    %>


    As you can see in the above example, we have a space between the rsProCom .movenext
  • Resolve Issue
    To resolve this issue:

    When you write your Loop, make sure that you have your RecordSet and Move properties
    Properly written out and with no spaces.

    Example:
    <%
    while not rsProCom.eof
    ' your data to display here
    rsProCom.movenext
    wend
    %>