getAttribute(String name,int scope)
引數說明:引數 | 說明 |
---|---|
APPLICATION_SCOPE | 在application物件範圍中搜尋 |
PAGE_SCOPE | 在page物件範圍中搜尋 |
REQUEST_SCOPE | 在request物件範圍中搜尋 |
SESSION_SCOPE | 在session物件範圍中搜尋 |
<% pageContext.getAttribute("user",pageContext.SESSION_SCOPE); %>
<body> <% pageContext.setAttribute("date",new Date()); //將資訊儲存在pageContext物件中 pageContext.setAttribute("author","C語言中文網"); out.println("系統時間為:"+pageContext.getAttribute("date")+"<br>"); //將資訊顯示在頁面中 out.println("作者為:"+pageContext.getAttribute("author")); %> </body>執行結果如下: