Hi All,
I am trying to match a session value to the URL value. So the logic is "if 8 = 8 then (show 1) else (show 2). So I have:
<% if (session("myID")) = (request.QueryString("membersID")) then %> your profile <% else %> not your profile <% end if %>
but for some reason, although both values are the same (which should lead to (show 1) they keep leading to (show 2) as above. Can anyone tell me what I'm doing wrong? I bet it's something really simple isn't it?
Please help! :S