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.Knowledge Base
- Breadrumbs:
Microsoft VBScript runtime error '800a01f9' Invalid or unqualified reference
- 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
%>
Share With Friends (Updated 6-8-2010)
Recent Articles
All Topics
- Coming Soon - Knowledge Exchange
Trending Articles
- Microsoft VBScript runtime error '800a0046' Permission denied FileSystemObject 24695
- Microsoft OLE DB Provider for SQL Server error '80040e57' String or binary data would be truncated. or The field is too small to accept the amount of data you attempted to add. Try inserting or pasting less data. 21297
- ADODB.Parameters error '800a0e7c' Parameter object is improperly defined 19544
- After Effects warning: Audio conforming failed for the following file .cfa. Perhaps due to disk space 17785
- The backup set holds a backup of a database other than the existing 16825