exo10: add a FIXME comment.
[TD_webapps.git] / ROOT / exo7 / saveinfos.jsp
CommitLineData
c69eb3b1 1<%
d2793705 2request.setCharacterEncoding("UTF-8");
c69eb3b1
JB
3String firstname = request.getParameter("firstname");
4String lastname = request.getParameter("lastname");
5String address = request.getParameter("address");
6String age = request.getParameter("age");
7String work = request.getParameter("work");
8session.setAttribute("firstname", firstname);
9session.setAttribute("lastname", lastname);
10session.setAttribute("address", address);
11session.setAttribute("age", age);
12session.setAttribute("work", work);
13%>
55d3b02b 14<meta charset="UTF-8">
c69eb3b1
JB
15<html>
16 <body>
17 <a href="nextpage.jsp">Continue</a>
18 </body>
19</html>