<%@ page language="java" contentType="text/html;charset=Shift_JIS" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="sess" uri="http://jakarta.apache.org/taglibs/session-1.0" %>
<html><body>
<font color="#700040">Taglibsのセッション管理(2)</font><br>
<p>
リンク元
<font color="red"><c:out value="${header.Referer}"/></font>
をセッション変数「mainMenuURL」に記憶します。
<sess:setAttribute name="mainMenuURL"><c:out value="${header.Referer}" /></sess:setAttribute>
<br>
OK? <sess:attribute name="mainMenuURL" />
</p>
<p>
<a href="session3.jsp">そしてページ3へ飛ぶ</a>
</p>
</body></html>
|