Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/02/2013, 07:26
Avatar de rgf1987
rgf1987
 
Fecha de Ingreso: diciembre-2012
Ubicación: Asturias
Mensajes: 269
Antigüedad: 12 años
Puntos: 22
Respuesta: Problema con servlet

Hola!!

¿como insertas los jsp?
Veamos, haciendolo de la siguiente manera debería funcionarte perfectamente:

Código JAVA:
Ver original
  1. <html>
  2. <body>            
  3.         <%@ include file="cabecera.jsp" %>  
  4.         <div>
  5.               AQUI HACES LAS OPERACIONES CON LA LISTA DE OBJETOS QUE RECIBES DEL SERVLET
  6.          </div>          
  7.         <%@ include file="piepagina.jsp" %>        
  8.     </body>
  9. </html>