﻿// TextBoxSoloEnteros

function EvaluateText(cadena, obj, e) {
    opc = false;
    tecla = (document.all) ? e.keyCode : e.which;

    if (cadena == "%IntegerTextBox") {
        if (tecla >= 47 && tecla <= 58) 
            opc = true;
    }
    return opc;

}
