Advertisement
Guest User

KPZ JARRI

a guest
May 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <%--
  2. Document : index
  3. Created on : 22 may 2019, 10:41:50
  4. Author : Alumno - Desarrollo
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12. <title>JSP Page</title>
  13. </head>
  14. <body>
  15.  
  16. <%
  17. double suma = 15 + 25;
  18.  
  19. //Crear una variable con Request
  20. request.setAttribute("resultado", suma);
  21. %>
  22.  
  23.  
  24. <h1>Expression Language ${param.suma}</h1>
  25. <h1 name="resultado"> ${resultado}</h1>
  26.  
  27. <form action="recibir.jsp" method="POST">
  28. <input type="text" name="txtusuario">
  29. <input type="submit" name="enviar" value="enviar">
  30. </form>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement