<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> modifyResult.jsp

회원정보 수정 확인



회원정보 수정 성공...

회원정보 수정 실패...



"> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> modifyResult.jsp

회원정보 수정 확인



회원정보 수정 성공...

회원정보 수정 실패...



"> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> modifyResult.jsp

회원정보 수정 확인



회원정보 수정 성공...

회원정보 수정 실패...



">
<%@ 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>modifyResult.jsp</title>
<style type="text/css">
p {
	font-size: 24px;
}
</style>
</head>
<body>
	<h1>회원정보 수정 확인</h1>
	<br><br>
	<p>
	<c:if test="${su != 0 }">
		<p>회원정보 수정 성공...</p>
	</c:if>	
	<c:if test="${su == 0 }">
		<p>회원정보 수정 실패...</p>
	</c:if>
	</p>
	<br><br>
	<input type="button" value="main" onclick="location.href='../main/index.jsp'"/>
</body>
</html>