Friday, September 4, 2009

Is Numeric function using Javascript

function IsNumeric(txtvalue)
{
if(txtvalue.value != "")
{
if(isNaN(txtvalue.value))
{
alert("Please Enter Numeric Value")
txtvalue.focus();
txtvalue.value = "";
return false;
}
}
}

No comments:

Post a Comment