<% pageContext.setAttribute("name", "雷锹", pageContext.PAGE_SCOPE);
pageContext.setAttribute("time", new Date(), pageContext.PAGE_SCOPE);
%>
<%= (String)pageContext.getAttribute("name") %>
<%= (Date)pageContext.getAttribute("time") %>
设置page属性范围,此属性只在当前的JSP页面中起作用
<%request.setAttribute("name", "sfafafa");
request.setAttribute("sex", "nan"); %>
<a href= "index.jsp">链接</a>
设置request属性范围,此属性只在当前的服务器跳转中起作用
<% session.setAttribute("name", "leiqiao");
session.setAttribute("sex", "nan");
%>
<a href = "index.jsp">forward</a>
设置session属性范围,此属性只在当前的一次会话中起作用
<%
application.setAttribute("name", "leiqoao");
application.setAttribute("sex", "nan");
%>
<jsp:forward page="index.jsp"></jsp:forward>
设置application属性范围,此属性值保存在服务器中