Posted by: vivekwin on: July 24, 2008
These all function are use when you use client side validation in your page .these are very simple and use it with your javascript code // function for checking string function checkString(str_temp, str_fld) { temp=new String(str_temp); if(str_temp==”") { window.alert(“Please enter the ” + str_fld); return false; } [...]