Finish exo9 code and fix unicode support where possible.
[TD_webapps.git] / ROOT / exo7 / saveinfos.jsp
... / ...
CommitLineData
1<%
2request.setCharacterEncoding("UTF-8");
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%>
14<meta charset="UTF-8">
15<html>
16 <body>
17 <a href="nextpage.jsp">Continue</a>
18 </body>
19</html>