Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <%--
  2.    Document   : bienvenida
  3.    Author     : sin_querer
  4. --%>
  5.  
  6. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  7. <!DOCTYPE html>
  8. <html>
  9.     <head>
  10.         <%
  11.            //Capturamos los datos enviados desde el servlet
  12.            String nombres = (request.getAttribute("nombres")).toString();
  13.            String apellidos = (request.getAttribute("apellidos")).toString();
  14.        %>
  15.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  16.         <title>JSP Page</title>
  17.     </head>
  18.     <body>
  19.         <h1>Hello World! <%=nombres + " " + apellidos%></h1>
  20.     </body>
  21. </html>