Tracking user actions with session

Result

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<%@ page import="java.util.*" %>


<html>
<body>

<!-- Step 1: Create HTML form -->
<form action="todo-demo.jsp">
Add new item: <input type="text" name="theItem"/>

<input type="submit" value="Submit"/>
</form>


<!-- Step 2: Add new item to "To Do" list -->

<%
List<String> items = (List<String>) session.getAttribute("myToDoList");

if(items == null){
items = new ArrayList<String>();
session.setAttribute("myToDoList", items);
}

String theItem = request.getParameter("theItem");
if(theItem != null){
items.add(theItem);
}
%>

<!-- Step 3: Display all "To Do" item from the session -->

<hr>
<b>To list items:</b> <br/>

<ol>
<%
for(String temp: items){
out.println("<li>" + temp + "</li>");
}
%>
</ol>

</body>

</html>