13/06/2007, 21:51
|
| | Fecha de Ingreso: mayo-2006
Mensajes: 137
Antigüedad: 18 años, 8 meses Puntos: 1 | |
Re: Como saber si le dimos click a un Button ??? me imagino que ocupas php o jsp o algo por estilo
puedes poner :
<input type="hidden" name="boton1" value="Guardar">
si ocupas button
<input type="hidden" name="boton1" value="Guardar">
<button type="submit">Guardar</button>
Si ocupas jsp
<% if(request.getParameter("boton1")!=null ){
//hace algo
}%>
Php
<?
if (boton=="Guardar"){
//haz algo
}
?> |