11/04/2006, 16:11
|
| | | Fecha de Ingreso: junio-2004 Ubicación: Misantla,Ver.Mexico
Mensajes: 181
Antigüedad: 20 años, 6 meses Puntos: 0 | |
Con buenos resultados he usado este codigo, *En el Load de tu pagina le agregas la funcion this.TxtNumber.Attributes.Add("onkeypress", "return GetValidatorByString(event)"); *Esta es la funcion:
<script> function GetValidatorByString (e) { tecla = (document.all)?e.keyCode:e.which; if (tecla==8) return true; patron = /[a-zA-ZÑñ[email protected]_áéíóú;:()+*!"·$%&]/; te = String.fromCharCode(tecla); return patron.test(te); //EJEMPLOS: de patrones //patron = /[a-zA-ZÑñ]/; //letras //patron = /[a-zA-ZÑñ[email protected]_áéíóú;:()+*!"·$%& ]/; //caracteres y numeros //patron = /[1234567890]/; //solo numeros }
</script> *Para solo permitir numero usarias: patron = /[1234567890]/;
Última edición por splinter; 11/04/2006 a las 16:22 |