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 '800a01b6 Object doesn't support this property or method

  • 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:
    150
  • Date Created
    Thursday, December 15, 2011
  • This Article Has been Viewed
    2471 times
  • Short Desc
    When writing out your EOF, you might inadvertently, misspell the EOF with OEF. This happens often, and is easy to correct.
  • Details
    When creating a LOOP within your ASP Classic web page, you might experience the following error. This happens a lot, especially when you are rushing through coding.

     

    Microsoft VBScript runtime error '800a01b6'
    Object doesn't support this property or method: 'oef'
    /New.asp, line 18
  • Recreate Issue
    To recreate this issue.

    <%

    while not rs.oef

    %>


    As you can see in the above example, are RecordSet's EOF is not properly written out.
  • Resolve Issue
    To resolve this issue.

    <%

    while not rs.eof

    %>


    As you can see in the above, we changed the OEF to EOF, which it is called:
    End Of File, not the opposite.