hi , many times we come to situation when in our website we just want to allow numeric value in text box.
This can be done by the client side java script.
Below is the script you need to insert
function isNumberKey(evt)
{
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode <> 57))
return false;
return true;
}
and here is how to attach this function to your text box either its html or asp.net text box.
onkeypress="return isNumberKey(event)"
No comments:
Post a Comment