Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/03/2011, 10:09
Avatar de Fuzzylog
Fuzzylog
 
Fecha de Ingreso: agosto-2008
Ubicación: En internet
Mensajes: 2.511
Antigüedad: 16 años, 3 meses
Puntos: 188
Respuesta: duda subre Struts 2 y JSP

Pues puedes hacerlos usando código html clásico <input type="button" .. /> sobre todo si vas a hacer manejo con javascript o ajax, hasta el uso de tags de struts de este tipo:

<%-- IMPORTS --%>
<%@ taglib uri="/tlds/jstl/fmt" prefix="fmt" %>
<%@ taglib uri="/tlds/struts/html" prefix="html" %>

<%-- LO QUE QUIERES PONER --%>
<html:submit styleClass="submit" >
<fmt:message key="texto.Submit.Messages.properties"/>
</html:submit>

ahi tb se le puede meter algún evento que se relacione con una función jscript, típicamente en el onClick.

Espero que te haya aclarado la duda.