I have a simple IF statement that is supposed to compare a session variable to a querystring, but it doesn't seem to be working. If I write the vars just before the comparison, the are identical but the IF statement never returns true.
Since this is my first ASP project, I'm sure there's something I'm overlooking. Any ideas?
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher
Code:
response.write Session("Cal_UserID") '-Returns 12345'
response.write Request.QueryString("schoolid") '-Returns 12345'
If Session("Cal_UserID") = Request.QueryString("schoolid") then...
Hope This Helps!
ECAR
ECAR Technologies
"My work is a game, a very serious game." - M.C. Escher