티스토리 뷰
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
String id = (String) session.getAttribute("id");
if (id == null) {
%>
<form action="exam3_login_check.jsp" method="post">
<input type="text" name="id" placeholder="아이디"><br> <input
type="password" name="pw" placeholder="비밀번호"><br> <input
type="submit" value="로그인"><br>
</form>
<%
}else{ %>
<%=id%>님 로그인 되셨습니다.
<a href="exam3_loginout.jsp">로그아웃</a>
<%
}
%>
</body>
</html>
exam3_login.jsp페이지
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
request.setCharacterEncoding("utf-8");
String id = request.getParameter("id");
String pw = request.getParameter("pw");
if (id.equals("test") && pw.equals("1234")) {
session.setAttribute("id", "test");
session.setAttribute("check", "remember");
%>
<script>
alert('로그인 성공');
location.href = 'exam3_login.jsp';
</script>
<%
} else {
%>
<script>
alert('로그인 실패');
location.href = "exam2_login.jsp";
</script>
<%
}
%>
exam3_login_check.jsp페이지
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
session.invalidate();
%>
<script>
alert('로그아웃');
location.href="exam3_login.jsp";
</script>
exam3_loginout.jsp페이지
[결과 페이지]
'JSP' 카테고리의 다른 글
JSP_홈페이지 로그인, 로그아웃 구현(DB연동 없이) (0) | 2021.05.02 |
---|---|
JSP_홈페이지 회원가입, 회원 목록 기능 만들기(DB연동 없이) (0) | 2021.04.28 |
JSP_세션(session) (0) | 2021.04.22 |
JSP_Bean, setProperty,getProperty (0) | 2021.04.21 |
JSP_Cookie_로그인 아이디 저장 (0) | 2021.04.21 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 실기
- this.
- Declaration
- 합격
- 정처산기
- request
- link href
- padding
- 정처기
- 정보산업처리기사
- dl
- Margin
- id
- Redirect
- application
- session
- RequestDispatcher
- scriptlet
- Expression
- jsp
- span
- CLASS
- forward
- 독학
- div
- getParameter
- pageContext
- NAV
- 자격증
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함