WEB Archive

[HTML] - jsp 이해하기 및 관찰 Scriptlet 영역 확인 <% %>

universedevelope 2024. 8. 21. 14:48
<%@ page contentType="text/html; charset=UTF-8"%>
<%
	// 스크립트 릿(Scriptlet)영역
	String name = "김상기";
	name += "은 홍길동이 아니다.";
	
	int result;
	result = 10 + 20;
	
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jsptest001.jsp</title>
</head>
<body>

<div>
	<h1>JSP 관찰하기</h1>
	<hr>
</div>

<div>
	<h2><%=name %></h2>
	<h2><%=result %></h2>
</div>

</body>
</html>
728x90