%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
Insert title here
main.jsp
CARE_LAB
저희 사이트에 방문해 주셔서 감사합니다!!!
<% boolean bool = false;
Cookie[] cookieArr = request.getCookies();
if(cookieArr!=null) {
for(Cookie c : cookieArr){
if(c.getName().equals("checkCookie")){
bool = true;
}
}
}
if(!bool){ %>
<% }
if(session.getAttribute("logUser")==null) { %>
<% } else { %>
<%= session.getAttribute("logUser") %>님 안녕하세요!!!
즐거운 시간되세요!!!
<% } %>