%
request.setCharacterEncoding("utf-8");
%>
memberPro.jsp
입력 정보
아이디 |
비밀번호 |
이름 |
이메일 |
주 소 |
${param.id } |
${param.pwd } |
${param.name } |
${param.email } |
${requestScope.addr } |
">
<%
request.setCharacterEncoding("utf-8");
%>
memberPro.jsp
입력 정보
아이디 |
비밀번호 |
이름 |
이메일 |
주 소 |
${param.id } |
${param.pwd } |
${param.name } |
${param.email } |
${requestScope.addr } |
">
<%
request.setCharacterEncoding("utf-8");
%>
memberPro.jsp
입력 정보
아이디 |
비밀번호 |
이름 |
이메일 |
주 소 |
${param.id } |
${param.pwd } |
${param.name } |
${param.email } |
${requestScope.addr } |
">
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%
request.setCharacterEncoding("utf-8");
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>memberPro.jsp</title>
<style type="text/css">
table, th, td {
border: 1px solid #333333;
border-collapse: collapse;
padding: 4px;
}
th {
width: 140px;
}
</style>
</head>
<body>
<h1>입력 정보</h1>
<br/>
<table>
<tr>
<th>아이디</th>
<th>비밀번호</th>
<th>이름</th>
<th>이메일</th>
<th>주 소 </th>
</tr>
<tr>
<td>${param.id }</td>
<td>${param.pwd }</td>
<td>${param.name }</td>
<td>${param.email }</td>
<td>${requestScope.addr }</td>
</tr>
</table>
</body>
</html>