Ver Mensaje Individual
  #6 (permalink)  
Antiguo 29/04/2002, 16:46
Avatar de tunait
tunait
Moderadora
 
Fecha de Ingreso: agosto-2001
Ubicación: Terok Nor
Mensajes: 16.805
Antigüedad: 23 años, 4 meses
Puntos: 381
Re: Action="depende!!!"

Bueno ya te entendí.

Mira, prueba a hacer algo así:

<img src="images/copiar.gif" alt="Copiar seleccionados" onclick="m=1; frmAcciones.submit()" onMouseOver="style.cursor = 'hand'">

<img src="images/cortar.gif" alt="Cortar seleccionados" onclick="m=2; frmAcciones.submit()" onMouseOver="style.cursor = 'hand'">

<img src="images/eliminar_seleccion.gif" alt="Eliminar seleccionados" onclick="m=3; frmAcciones.submit()" onMouseOver="style.cursor = 'hand'">

En el form pon esto:

<form name="frmAcciones" action="javascript:accion()">


y un javascript que sea algo asi como:

<script language="javascript">
function accion()
{
if(m==1){document.frmAcciones.action="Portapa peles.asp"}
if(m==2){document.frmAcciones.action="Archivo s_a_cortar.asp"}
if(m==3){document.frmAcciones.action="Elimina r_archivos.asp"}
}
</script>

A ver si te sirve :)