Java Script for Insert Numeric Values only.
function IsNumeric(txtvalue)
{
if (txtvalue.value != "")
{
if (isNaN(txtvalue.value))
{
alert("Please Enter Numeric Value")
txtvalue.focus();
txtvalue.value = "";
return false;
}
}
}
call this function on text box onblur event type:- onblur=txtphone_no(this);
hope this will help the freshers.
Subscribe to:
Post Comments (Atom)
I like this post very much, it will help me to build .net application.
ReplyDelete