Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%--
- Document : bienvenida
- Author : sin_querer
- --%>
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <%
- //Capturamos los datos enviados desde el servlet
- String nombres = (request.getAttribute("nombres")).toString();
- String apellidos = (request.getAttribute("apellidos")).toString();
- %>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>JSP Page</title>
- </head>
- <body>
- <h1>Hello World! <%=nombres + " " + apellidos%></h1>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment