Notice
Recent Posts
Recent Comments
Link
«   2025/03   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

insert.jsp 본문

JSP/JSP.sideproject

insert.jsp

GAWON 2023. 6. 23. 12:47
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<c:choose>
		<c:when test="${result gt 0 }">
			<script type="text/javascript">
				alert("새 게시글이 등록되었습니다.");
				location.href='BBSController?cmd=allList';
			</script>
		</c:when>
		<c:otherwise>
			<script type="text/javascript">
				alert("새 게시글 등록이 실패했습니다.");
				history.back();
			</script>
		</c:otherwise>
	</c:choose>
</body>
</html>

'JSP > JSP.sideproject' 카테고리의 다른 글

remove_page.jsp  (0) 2023.06.23
remove_comment.jsp  (0) 2023.06.23
insert_page.jsp  (0) 2023.06.23
insert_comment.jsp  (0) 2023.06.23
download.jsp  (0) 2023.06.23