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
| <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%> <!DOCTYPE html> <html> <head> <meta charset="EUC-KR"> <title>Insert title here</title> </head> <body>
<center>
<% request.setCharacterEncoding("euc-kr"); //사용자로부터 데이터를 읽어드림 String id = request.getParameter("id"); String pass = request.getParameter("pass"); //아이디와 패스워드를 저장 session.setAttribute("id", id); session.setAttribute("pass", pass); //세션의 유지시간 설정 session.setMaxInactiveInterval(60);
%>
<h2> Your id is <%= id %></h2> <a href="SessionLoginProc2.jsp">Next page</a> </center>
</body> </html>
|