<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/tlds/TestTagLib.tld" prefix="test"%>
<%@ taglib tagdir="/WEB-INF/tags/" prefix="filed"%>
<html>
<body>
<b>Simplest :</b>
<test:simplest/><br/>
<b>Simplest with attribute :</b>
<test:simplest myAttribute="My Attribute Value"/><br>
<b>Simplest with body :</b>
<test:simplest>
<i>My Body</i>
</test:simplest>
<br>
<b>Tag File</b>
<filed:FiledTagTest myAttribute="My Attribute Value">
<i>My Body</i>
</filed:FiledTagTest>
</body>
</html>
Dosyayı İndir