Ask a Question related to ASP, Design and Development.

  1. #1

    Default An easy one I hope

    I want to redirect to a page if a variable is greater than 1 so I'm using
    the following code but get an incorrect syntax error, can somebody please
    tell me the correct syntax?

    Cheers.

    Code:

    If iRecordCount = >1 then
    response.redirect "test.asp"
    End If


    Miguel Orrego Guest

  2. Similar Questions and Discussions

    1. easy image scaling question, i hope?
      ok i placed my image, scaled it down, or up. now i want to scale it back to its original size. tried going to the transform palette and selecting...
    2. Easy question (i hope)
      I have built a custom control with a hidden html input box. I use this hidden field to hold a value that i wanted posted back to the server after...
    3. EASY QUESTION - I Hope
      This works for me, can you try this? does it work for you? <cfform format='flash' method='post' style="background-color: ##eeEEee"> <cfinput ...
    4. Easy question = easy answer?
      Well, so I'm pretty new with Freehand, at the mo running with MX and havin' a problem (not big, but anyway)... I'm creating some cards and they...
    5. Easy Question/Easy Answer
      Ok, this is all i want to know how to do, i made a text link, now when someone rolls over it with their pointer i want it to change color. Simple?
  3. #2

    Default Re: An easy one I hope

    Miguel Orrego wrote on 19 aug 2003 in
    microsoft.public.inetserver.asp.general:
    > I want to redirect to a page if a variable is greater than 1 so I'm using
    > the following code but get an incorrect syntax error, can somebody please
    > tell me the correct syntax?
    >
    > Cheers.
    >
    > Code:
    >
    > If iRecordCount = >1 then
    > response.redirect "test.asp"
    > End If
    >
    It is not English free-for-all, but a computer language:

    If iRecordCount > 1 then


    --
    Evertjan.
    The Netherlands.
    (Please change the x'es to dots in my emailaddress)
    Evertjan. Guest

  4. #3

    Default Re: An easy one I hope

    "Miguel Orrego" <miguel@stressedmonkey.net-nospam> wrote:
    >I want to redirect to a page if a variable is greater than 1 so I'm using
    >the following code but get an incorrect syntax error, can somebody please
    >tell me the correct syntax?
    >
    >Cheers.
    >
    >Code:
    >
    >If iRecordCount = >1 then
    You seem to have left a space between the equal sign and the greater
    than sign, and you've got them in the wrong order. You're trying to
    say "greater than or equal". The symbol for that is two characters: >=
    with no space. So:

    If iRecordCount >= 1 Then
    >response.redirect "test.asp"
    >End If
    >

    --
    Tim Slattery
    MS MVP(DTS)
    [email]Slattery_T@bls.gov[/email]
    Tim Slattery 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