Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2. pageEncoding="ISO-8859-1"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  7. <title>Insert title here</title>
  8. </head>
  9. <body>
  10. <%request.setAttribute("request1", "requestValue"); %>
  11. <%session.setAttribute("req1", request); %>
  12. <br>
  13. <a href="jsp2.jsp">link</a>
  14. </body>
  15. </html>
  16.  
  17. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  18. pageEncoding="ISO-8859-1"%>
  19. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  20. <html>
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  23. <title>Insert title here</title>
  24. </head>
  25. <body>
  26. <br>
  27. <%HttpServletRequest rrrr=(HttpServletRequest)session.getAttribute("req1"); %><br>
  28. <%=rrrr.getAttribute("request1")%><br>
  29. </body>
  30. </html>
  31.  
  32. null
  33.  
  34. requestValue
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement