Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/05/2006, 11:45
Avatar de dogduck
dogduck
 
Fecha de Ingreso: enero-2006
Ubicación: ¿Atlantida, Hesperides, Islas afortunadas?
Mensajes: 2.231
Antigüedad: 19 años, 1 mes
Puntos: 19
Mira a ver si te vale ( al menos creo que sí en IE)
Código:
<script>
function abre(fichero){
window.open(fichero);
}
</script>
</head>

<body>

<form name="elformu" method="POST" enctype="multipart/form-data"
 action="http://loquesea">
	
<p><input type="file" name="F1" size="20">
     <input type="submit" value="Enviar" name="B1" >
     <input type="reset" value="Abrir fichero" name="B2" onclick="abre(F1.value)"></p>
</form>