Question
if / then with OR in the list not working?
I can't figure out why this doesn't work:
<% if Session("svUserID") = (1768 or 1919 or 188 or 566) then %>
If I write it like this, none of these IDs are recognized and my "then"
doesn't run.
If I write:
<% if Session("svUserID") = 1768 or 1919 or 188 or 566 then %>
then it seems like ANY UserID gets what follows the "then" ... even if it's
not one in the list!
Is it my syntax??
Help!
<% if Session("svUserID") = (1768 or 1919 or 188 or 566) then %>
If I write it like this, none of these IDs are recognized and my "then"
doesn't run.
If I write:
<% if Session("svUserID") = 1768 or 1919 or 188 or 566 then %>
then it seems like ANY UserID gets what follows the "then" ... even if it's
not one in the list!
Is it my syntax??
Help!
