JSP 폼 처리(POST)
페이지 정보
본문
1. getNameJsp.html
<html>
<head>
<title>Get Name</title>
</head>
<body>
<h3>이름과 주소를 입력해주세요.</h3>
<form method=post action=getName.jsp>
이름: <input type=input name=name><br>
주소: <input type=input name=addr><br><br>
<input type=submit value=전송>
<input type=reset value=취소>
</form>
</body>
</html>
2. getName.jsp
<%@ page contentType="text/html;charset=KSC5601" %>
<html>
<head><title>JSP</title></head>
<body>
<center><h3>JSP를 이용한 FORM 처리</h3></center>
<li> 이름:
<%
request.setCharacterEncoding("KSC5601");
String name = request.getParameter("name").trim();
if(name != null && name.length() != 0){
out.println(name);
}
else
{
out.println("무명씨");
}
%>
<li> 주소:
<%
String addr = request.getParameter("addr").trim();
if(addr != null && name.length() != 0){
out.println(addr);
}
else
{
out.println("집 없는 천사 ?");
}
%>
</body>
댓글목록
등록된 댓글이 없습니다.