Éste es el body
Código HTML:
<body background="imagenes/fondo.jpg" method="POST"> <form align="center" action="ServletInstrumento"> <table align="center"> <tr> <img src="imagenes/arpa.jpg"> </tr> <tr> <td> <input type="button" value="Mostrar"> </td> <td> <input type="button" value="Afinar"> </td> <td> <input type="button" value="Tocar"> </td> </tr> </table> </form> </body>
Código:
y éste último es el método afinar de la clase Arpa que implementa de Instrumentosprotected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { try { } finally { Instrumentos iArpa=new Arpa() {}; String arpa=iArpa.afinar("arpa"); request.getSession().setAttribute("arpa", arpa); response.sendRedirect("Instrumento.jsp"); } }
Código:
Espero la ayuda de alguien. Muchas gracias. public String afinar(String instrumento) { return "El " + instrumento + " se ha afinado"; }