I downloaded an asp script, and it used "<>" a lot.
Ex:
What does "<>" do?Code:if Request.Form("_fieldOrder") <> "" then
Printable View
I downloaded an asp script, and it used "<>" a lot.
Ex:
What does "<>" do?Code:if Request.Form("_fieldOrder") <> "" then
<> = Inequality or not equal to.
Example:
Up <> Down
Left <> Right
"MyText" <> ""
Thanks for the help. :D
So, "<>" is basically the same thing as "!="?
Up != Down
etc...
Guess so :rolleyes:
Quote:
Originally posted by sail3005
Thanks for the help. :D
So, "<>" is basically the same thing as "!="?
Up != Down
etc...
Yes !
Hi,
Actually, <> means "less than or greater than" which is another way of saying "not equal to".
Al.
Thanks, that helps a lot. Now i can get back to work!