JSP

chapter09 : buffer

GAWON 2023. 5. 23. 18:37
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page buffer="1kb" autoFlush="false"%>    
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<%
		for(int i=1; i<=2000; i++){
			out.print(i);
		}
	%>
</body>
</html>