JAVA_EE/EL-JSTL
[21.10.06] image.jsp / today.jsp / main.jsp(exam)
luvforjunk
2021. 10. 7. 10:27
728x90
반응형
////////image.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<img src="../img/img7.PNG">
<br><br>
<%
String name="카카오";
%>
image.jsp의 name = <%=name%>
////////today.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.util.Date" %>
오늘 날짜는 <%= new Date() %> 입니다.
<%
//String name="쿼카";
%>
////////main.jsp
<%@ 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>
<h3>** include directive **</h3>
<%@ include file="today.jsp" %>
<h3>** include JSP tag **</h3>
<jsp:include page="image.jsp"></jsp:include>
<br><br>
<%
String name="카카오 프렌즈";
%>
main.jsp의 name = <%=name %>
<h3>** 3초 뒤에 페이지 이동 **</h3>
<%
response.setHeader("Refresh", "3;url=../el/elInput.jsp");
%>
</body>
</html>
728x90
반응형