/WEB-INF/tags/header.tag -->header가 태그이름이 됨
========================
<%@tag pageEncoding="euc-kr"%>--->한글처리
<%@ attribute name="aa" required="true" %> -->속성 설정하기
<img src="imgs/naver.gif"><br>
<h1>이름: ${aa}</h1> -->EL로 바로 출력
a.jsp
=====
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="myTags" tagdir="/WEB-INF/tags" %> --->myTags로 정해두고
<!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:header aa="abc"/> --->myTags를 사용해서 설정한 태그이름으로 태그를 불러움 aa="abc"는 속성 설정
</body>
</html>
'개발하자 > JSP&Servlet' 카테고리의 다른 글
taglib,forEach사용해서 구구단출력 (0) | 2015.03.31 |
---|---|
태그만들어 사용하기 예제 (0) | 2015.03.31 |
blockUI (0) | 2015.03.28 |
jQuery BlockUI Plugin (0) | 2015.03.28 |
annotation (0) | 2015.03.28 |