6강 JSP web programming toturials 페이지 디렉티브2(Jsp Page directive2)

카테고리 없음 2019. 4. 18. 21:23
반응형

https://www.youtube.com/watch?v=99JsnraiiHY&list=PLSBIrFmNg2JbKJcjEYJzmhYKvFbo-CM92&index=6

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<%@ 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>
 
    에러 페이지 입니다.
    
</body>
</html>
 
 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8" errorPage="Error.jsp" isErrorPage="true"%>
    
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
 
<!-- 스크립트릿 -->
<%
    int sum = 10/0;    //에러코드 작성 
%>
 
</body>
</html>
 
 
반응형
: