Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Expected 'End'

    I'm at a loss here. Any help would be appreciated. Here is the error I am
    getting: Microsoft VBScript compilation error '800a03f6' Expected 'End'
    /peer/login.asp, line 131 ******Here is the Code for line 131**********
    <span class='style11'><% If Request.QueryString('Action')= 'Failed' Then %>The
    details you entered were not found, please try again. </span></p>
    <p class='style11'><% ElseIf Request.QueryString('Action')= 'NoAccess'
    Then%>Your login has either timed out, or you do not have access to the page
    you tried to vew. Please login.</p></td><End if%> Thanks Eric

    Eric8000 Guest

  2. Similar Questions and Discussions

    1. Too few parameters. Expected 1.
      I've searched all over the place, and can't find a solution to this error message to my query. I've come across it before, and I know that a common...
    2. Too few parameters. Expected 2.
      My form page: <cfform action="InstreamUpdate2.cfm" method="post"> <CFQUERY NAME="EditQueryInstreamWork" DATASOURCE="Instreamworks"> select *...
    3. not getting what i expected
      Hi I am working on a site with php & mysql. all that code is fine. However i now am adding in a banner/click thru code. Now here's my dilemma,...
    4. Expected END IF
      I Get this error with my code Script error: Expected END IF end mouseUp? Does anyone know what I'm doing wrong?
    5. Using 'print <<<END'
      Hi, When printing like this: print <<<END Hello world END; Is it at all possible to use a function in the output ? For example:
  3. #2

    Default Re: Expected 'End'

    what about the % sign?

    <End if%>


    Eric8000 wrote:
    > I'm at a loss here. Any help would be appreciated. Here is the error I am
    > getting: Microsoft VBScript compilation error '800a03f6' Expected 'End'
    > /peer/login.asp, line 131 ******Here is the Code for line 131**********
    > <span class='style11'><% If Request.QueryString('Action')= 'Failed' Then %>The
    > details you entered were not found, please try again. </span></p>
    > <p class='style11'><% ElseIf Request.QueryString('Action')= 'NoAccess'
    > Then%>Your login has either timed out, or you do not have access to the page
    > you tried to vew. Please login.</p></td><End if%> Thanks Eric
    >
    Manuel Socarras Guest

  4. #3

    Default Re: Expected 'End'

    Thanks for the reply. I did fix that, but still the same error. Here is the
    code again now. <% If Request.QueryString('Action')= 'Failed' Then %>The
    details you entered were not found, please try again. </span></p>
    <p class='style11'><% ElseIf Request.QueryString('Action')= 'NoAccess'
    Then%>Your login has either timed out, or you do not have access to the page
    you tried to vew. Please login.</p></td <%End If%>

    Eric8000 Guest

  5. #4

    Default Re: Expected 'End'

    It's not necessarily that line that's the issue. It just means that
    somewhere up above, there's an IF without and END. The mismatched nesting
    is usually not noticed until the end of the file, but it can occur just
    about anywhere on the page.

    "Eric8000" <webforumsuser@macromedia.com> wrote in message
    news:d020ev$ehk$1@forums.macromedia.com...
    > Thanks for the reply. I did fix that, but still the same error. Here is
    the
    > code again now. <% If Request.QueryString('Action')= 'Failed' Then %>The
    > details you entered were not found, please try again. </span></p>
    > <p class='style11'><% ElseIf Request.QueryString('Action')=
    'NoAccess'
    > Then%>Your login has either timed out, or you do not have access to the
    page
    > you tried to vew. Please login.</p></td <%End If%>
    >

    CMBergin Guest

  6. #5

    Default Re: Expected 'End'

    You my friend are a life saver. Thaks so much!
    Eric8000 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139