Win Or Loss
I am using the code below to try and find wether one value is bigger than another. I am having problems because when I put this code into the page it doesnt work at all:
Code:
<%
if rsFixture("HomeTeamID") = Request.QueryString("tid") and rsFixture("HomeTeamID") < rsFixture("AwayTeamID") then
response.Write("Loss")
else if rsFixture("AwayTeamID") = Request.QueryString("tid") and rsFixture("HomeTeamID") < rsFixture("AwayTeamID") then
response.Write("Won")
end if
end if %>