Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
That sounds like the user is entering a string, which would not be the same as a variable age.example.. user will enter "age > 45"
[blue] myScript.Language = "vbscript"
myScript.AddCode "age=47"
If myScript.Eval("age>45") Then
MsgBox "It works!"
Else
MsgBox "Oh dear"
End If[/blue]