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 compilation (0x800A03F9) Expected 'Then'

  • 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:
    23
  • Date Created
    Tuesday, October 5, 2010
  • Last Updated
    Wednesday, November 17, 2010
  • This Article Has been Viewed
    3959 times
  • Short Desc

    When writing an IF Statement in ASP Classic, you forget to add the THEN to the end of the statements line.
  • Article Details

    When you write your IF statement, and you forget to add in the THEN at the end, you will receive this error.

     
    Microsoft VBScript compilation (0x800A03F9)
    Expected 'Then'
    Header_Menu.asp, line 41, column 24
    if strusername="myname"
    -----------------------^
  • Recreate Issue

    To recreate this issue.

    <%
    if strusername="myname"
    response.write"Hello myname, hope you enjoy your stay"
    end if
    %>
  • Resolve Issue

    To resolve the issue, make sure that when you have an IF statement, you have it THEN.

    <%
    if strusername="myname" then
    response.write"Hello myname, hope you enjoy your stay"
    end if
    %>