Ojala alguien me pueda ayudar, saludos y gracias.
Tabla de acsii http://www.asciitable.com/
Código:
function EvaluateText(cadena, obj, e){
opc = false;
tecla = (document.all) ? e.keyCode : e.which;
if (cadena == "%f")
{ if (tecla == 9)
opc = true;
if (tecla > 45 && tecla < 58)
opc = true;
if (tecla == 8)
opc = true;
if (tecla == 47)
opc = false;
}
return opc;
}
jajajaja

