<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<%

request.setCharacterEncoding("EUC-KR");

String value1 = request.getParameter("key1");

String value2 = request.getParameter("key2");

out.println("this is server response");

out.println("key1=" + value1);

out.println("key1=" + value2);

%>

<!-- jsp는 단순히 보내는   -->

</body>

</html>

블로그 이미지

왕왕왕왕

,