<%@ tag language="java" pageEncoding="EUC-KR"%>
<%@ attribute name="value" required="true" %>
<%@ attribute name="color" required="true" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:forEach var="a" begin="1" end="9">
${value} x ${a} = ${value*a}
<br>
</c:forEach>
=========================================================
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="myTags" 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>
<myTags:gugudan value="5" color="orange"/>
<hr>
<myTags:gugudan value="7" color="skyblue"/>
</body>
</html>
jQgrid 명령어들 모음.. 계속 추가중... (3) | 2015.03.31 |
---|---|
자바 쓰레드 2개를 이용한 1~100 총합 구하기 (0) | 2015.03.31 |
JSP 내가 태그 만들어서 써보기 2 (0) | 2015.03.31 |
JSP 내가 태그 만들어서 써보기 (0) | 2015.03.31 |
jsp 애노테이션을 이용해서 beans에 값 자동 셋팅하기 (0) | 2015.03.28 |