Advertisement
uopspop

Untitled

Oct 14th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.71 KB | None | 0 0
  1. <%@ page contentType="text/html; charset=UTF-8" pageEncoding="Big5"%>
  2. <%
  3. pageContext.setAttribute("customer","peter1");
  4. request.setAttribute("customer","peter2");
  5. session.setAttribute("customer","peter3");
  6. application.setAttribute("customer","peter4");
  7. %>
  8. <html>
  9. <head><title>Test_scope.jsp</title></head>
  10. <body>
  11. &lt;%=pageContext.getAttribute("customer")%&gt; = <%=pageContext.getAttribute("customer")%><br>
  12. &lt;%=request.getAttribute("customer")%&gt;     = <%=request.getAttribute("customer")%><br>
  13. &lt;%=session.getAttribute("customer")%&gt;     = <%=session.getAttribute("customer")%><br>
  14. &lt;%=application.getAttribute("customer")%&gt; = <%=application.getAttribute("customer")%><br>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement