function validate_required(field,alerttxt)
{
with (field)
{
if (value==null||value=="")
{
alert(alerttxt);return false;
}
else
{
return true;
}
}
}
Create this blog to help others . share coding , interview and many more things .
0 comments:
Post a Comment
plzz give the comment