Why don't this work?
if MemberID <> "" then
if Mlev < 2 then
if instr(Request.ServerVariables("SERVER_NAME"),mytext) then
Response.Redirect("http://www.someurl.com")
end if
end if
end if
If I leave out the if MemberID <> "" then-part it's working, but then it's blocking ALL visitors, even those not logged in, ie I can't login because I'm redirected =)
I want to have it so that all logged in users with Mlev < moderator get redirected.