
Check if input is number or text?
info = request.querystring("info")
If IsNumeric(info) Then
info=Clng(info)
Else
'tell me its not a number
End If
Is there anyway to check if an input is an integer?
I'm getting the information from ...
info = request.querystring("info")
I want to convert this to a number with...
info = clng("info")
Then I'm using the number to search my SQL database.