Ver Mensaje Individual
  #9 (permalink)  
Antiguo 15/05/2007, 12:10
Avatar de B**
B**
 
Fecha de Ingreso: enero-2006
Ubicación: Monterrey,Mexico
Mensajes: 952
Antigüedad: 19 años
Puntos: 3
Re: [MVC]Necesito orientación Aplicación Web Modular

Tienes que hacer un forward:
Código HTML:
protected void dispatch(HttpServletRequest request,
    HttpServletResponse response, String page) 
    throws javax.servlet.ServletException, 
    java.io.IOException {
        RequestDispatcher dispatcher = 
          getServletContext(). 
            getRequestDispatcher(page);
        dispatcher.forward(request, response);
  }
Código HTML:
http://www.programacion.net/java/tutorial/patrones/8/
__________________
-URL= Go PHP5.
-Age=22.
-Learning=PHP,J2EE,Struts,MAMBO,C++,JSON,AJAX,XHTML ,CSS.

Última edición por B**; 15/05/2007 a las 12:33