Finish exo9 code and fix unicode support where possible.
[TD_webapps.git] / ROOT / exo7 / saveinfos.jsp
1 <%
2 request.setCharacterEncoding("UTF-8");
3 String firstname = request.getParameter("firstname");
4 String lastname = request.getParameter("lastname");
5 String address = request.getParameter("address");
6 String age = request.getParameter("age");
7 String work = request.getParameter("work");
8 session.setAttribute("firstname", firstname);
9 session.setAttribute("lastname", lastname);
10 session.setAttribute("address", address);
11 session.setAttribute("age", age);
12 session.setAttribute("work", work);
13 %>
14 <meta charset="UTF-8">
15 <html>
16 <body>
17 <a href="nextpage.jsp">Continue</a>
18 </body>
19 </html>