ASP Forum
number validation
phobos | Posted 5:14am 25. July 2005 Server Time |

I need some help in number validation.

In search box i can enter just numbers (0-9). So if its entered some other character should not let me through form.

S
thorpe | Posted 6:37am 25. July 2005 Server Time |

dim foo : foo = 123

if (isnumeric(foo)) then
  response.write "true"
else
  response.write "false"
end if


Reply to Post number validation



Back to Forum Page