%@ page contentType="text/html;charset=Big5" %>
CH5 - PageScope3.jsp
Page ½d³ò - pageContext
<%
pageContext.setAttribute("Name","mike");
pageContext.setAttribute("Password","browser");
String Name = (String)pageContext.getAttribute("Name");
String Password = (String)pageContext.getAttribute("Password");
out.println("Name = "+Name);
out.println("Password = "+ Password);
%>