Notice
Recent Posts
Recent Comments
Link
기린의 기록을 위한 공간
6.msg.jsp 본문
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
/* 서버에서 보낸 메세지 변수로 선언 */
String msg = (String)request.getAttribute("msg");
String loc = (String)request.getAttribute("loc");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- 서버에서 보낸 메세지 띄워주기 -->
<script>
/* ''or ""를 안해주면 출력을 안하고 변수를 찾게됨 */
alert('<%=msg%>');
location.replace("<%=request.getContextPath()%><%=loc%>");
</script>
</body>
</html>
'Programming > JDBC' 카테고리의 다른 글
5.LoginServlet (0) | 2020.02.21 |
---|---|
4. VO (0) | 2020.02.21 |
3.Service (0) | 2020.02.21 |
2.DAO (0) | 2020.02.21 |
1.JDBCTemplate (0) | 2020.02.21 |
Comments