직무적성검사
인적성 수리 문제
<%@ page 속성1="값1" [속성2="값2" ...] %>
<%@ page language="java" %>
text/html
, text/xml
, text/pain
등이 있으며, 기본 값은 text/html
<%@ contentType="text/html" %>
<%@ page contentType="text/html;charset=utf-8" %>
ISO-8859-1
<%@ page pageEncoding="ISO-8859-1" %>
// 아래와 동일
<%@ page contentType="text/html; charset="iso-8859-1" %>
Leave a comment