首先在启用 cookies 的情况下运行。然后关闭对 cookie 的支持,重启浏览器,再运行一次。每次你都可以看到会话管理在起作用,并能在页之间传递信息。
注意,如果你想让这个例子能在关闭了 cookies 的浏览器中工作,你的 JSP 引擎必须支持 URL 重写。
hello1.jsp
%@ page session="true" %> % Integer num = new Integer(100); session.putValue("num",num); String url =response.encodeURL("hello2.jsp"); %> a href='%=url%>'>hello2.jsp/a>
hello2.jsp
%@ page session="true" %> % Integer i= (Integer)session.getValue("num"); out.println("Num value in session is "+i.intValue()); %>
axeon于2000-08-03 11:05:38发送 Copyright copy; 2000 www.jsper.com All rights reserved. The catalog script used on this site was written by axeon 站务联系: [axeonOICQ:1684897 ICQ:75795533]