----- HEADER
<%@ page contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:requestEncoding value="EUC_KR"/>
<h1> 헤더 정보들 </h1>
<c:forEach var="h" items="${header }">
<li><c:out value="${h.key }"/>:
<c:out value="${h.value }"/>:
</c:forEach>
<p/>
<c:out value="${param.name }"/>
-- 사진
-- 사진
----- 구구단
<%@ page contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
String t; // t가 <c:set var="t" value="${param.t }"/>부분과 동일
t = request.getParameter("t");
%>
<center>
<h1> 구구단 </h1>
<c:set var="t" value="${param.t }"/>
<c:if test="${empty t }"> <%// if문 t가 비어있따면 %>
<c:set var="t" value="5"/> <%// t가 5로 되어라 %>
</c:if>
<%//for문 int a = 1; i<9 i++ %>
<c:forEach var="a" begin="1" end="9" step="1">
<c:out value="${t } * "/> <%//System.out.println(t); 동일 %>
<c:out value="${a } "/>=<c:out value=" ${t * a}"/><br>
</c:forEach>
</center>
-- 결과 구구단의 5단이 출력된다, t=5이기 때문이다.
---- 전송 - 빈이용
-- ContacInfo.java (빈즈역할)
-- contact4.html
-- contact4.jsp
---- 전송 - 빈이용
-- ContacInfo.java (빈즈역할)
package el;
public class ContacInfo {
private String name;
private String email;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
-- contact4.html
<html><head><title>연락처</title></head>
<body>
<h3>연락처</h3>
<form method=post action=contact4.jsp>
이름 <input type=text name="name"><br>
메일 <input type=text name="email"> <br>
<p>
<input type=submit value=전송>
<input type=reset value=취소>
</form>
</body>
</html>
-- contact4.jsp
<%@ page contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:requestEncoding value="EUC_KR"/>
<jsp:useBean id="info" class="el.ContacInfo" scope="session"/>
<jsp:setProperty property="*" name="info"/>
이름 : ${info.name }<br/>
이메일 : ${info.email }<br/>
-- 사진
-- 사진
'progarm_old > [JAVA-JSP]' 카테고리의 다른 글
셀렉터시 선택사항 선택 스크립트로 끝내자 (0) | 2012.11.05 |
---|---|
[JAVA_EL]12.03.29 - 익스프레션 언어 (0) | 2012.03.29 |
[JSP_EL] 12.03.19 - EL, JSTL 기본개념 (0) | 2012.03.19 |
Java 메일 서버(james) 설치 및 환경 구축 (0) | 2012.03.17 |
[JAVA_JSP] 12.02.10 - 관리자, (0) | 2012.02.10 |