> I would like it to read
> If i = q1 OR q2 Then Response.Write("Hello")
> However this syntax does not seem to work.
You need a full equation for each condition, so it would look like this:
if i = q1 or i = q2 then response.write("Hello")
HTH!
--Ken