<%! String pageTitle = "Sessions page 1 in-class"; %>
<%@ include file="St10CommonTop.jsp" %>

    <ul>
        <li> is the automatically-defined session new?: 
             <%= session.isNew() %> </li>
        <li> trying to set an attribute for this session:
             attribute page_num, value 1;

             <%-- look! auto-boxing DOES work for session 
                  attributes?? --%>

             <% session.setAttribute("page_num", 1); %>
             </li>
        <li> max inactive interval: 
             <%= session.getMaxInactiveInterval() %> </li>
    </ul>

    <form action=
     "http://nrs-projects.humboldt.edu:8888/examples/jsp/student/St10Sessions2.jsp"
          method="post">
        <label> Name: <input type="text" name="username" /> </label> <br />
        <input type="submit" value="Submit" />
    </form>

<%@ include file="St10CommonBottom.jsp" %>