본문 바로가기

개발하자/JSP&Servlet

taglib,forEach사용해서 구구단출력

a.jsp

==========================

<%@ page language="java" contentType="text/html; charset=EUC-KR"
 pageEncoding="EUC-KR"%>
<%@ taglib prefix="myTag" tagdir="/WEB-INF/tags" %>
<!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>
 <myTag:gugudan value="5" color="orange" />
<hr>
<myTag:gugudan value="7" color="skyblue" />
 </body>
</html>

 

gugudan.tag

============================

 <%@tag pageEncoding="euc-kr"%>
 <%@ attribute name="value" required="true" %>
 <%@ attribute name="color" required="true" %>
 <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>  -->jstl.jar와 standard.jar가 lib폴더에 있어야함

 <div style="color:${color}">        -->색상바꾸기
 <c:forEach  var="i" begin="1" end="9">
<h1>${value}X${i}=${value*i}</h1>
</c:forEach>

 </div>

'개발하자 > JSP&Servlet' 카테고리의 다른 글

synchronized  (0) 2015.03.31
전달할값이 많을때 tag  (0) 2015.03.31
태그만들어 사용하기 예제  (0) 2015.03.31
태그파일 사용하기,속성값 전달  (0) 2015.03.31
blockUI  (0) 2015.03.28