dhoward007
Programmer
I am building an asp application and cannot figure out how to compare two integers.. Is this possible using vbscript?
Below is a brief example of what I am trying to do.. Any suggestions??
dim strIntOne
dim strIntTwo
strIntOne = CInt(rsValues("value")
strIntTwo = CInt(rsValues("valueTwo")
IF strIntOne = strIntTwo THEN
Action
ELSE
Action
END IF
Below is a brief example of what I am trying to do.. Any suggestions??
dim strIntOne
dim strIntTwo
strIntOne = CInt(rsValues("value")
strIntTwo = CInt(rsValues("valueTwo")
IF strIntOne = strIntTwo THEN
Action
ELSE
Action
END IF