Como esta y funciona
Código:
hasta aqui todo ok como comentaba, ahora necesito lo mismo pero con 2 input type llamados archivo2 y archivo3 y cada uno con su chekbox que lo bloquee de forma independiente..<script LANGUAGE="JavaScript"> function checkPostBack(chkid) { var postback = false; chk = document.getElementById(chkid); if ( checkBelowMinBatch(chk) ) { postback = true; document.formulario.archivo1.disabled=!document.formulario.archivo1.disabled; } return postback; } function checkBelowMinBatch(chk) { if (chk.checked == true) { return confirm("Se dispone a anular el Archivo\nEsta seguro(a) que desea continuar?"); } else { return confirm("El Archivo quedará habilitado nuevamente\nEsta seguro(a)?"); } } </script> ---- codigo extras etc... ---- <form name="formulario" id="formulario" method="post" action="web.php"> <input type="file" name="archivo1" id="archivo1" style="width:140px;" /><br /> <input type="checkbox" name="cot1" id="cot1" value="1" onclick="javascript:return checkPostBack('cot1', 5, 10);__doPostBack('cot1','')" /> </form>
cosa que al hacer click en el checkbox cot2 solo bloquee o active el input archivo2
y así
Saludos