simpletags.tld

来自「J2EE指南」· TLD 代码 · 共 37 行

TLD
37
字号
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
"http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<shortname>simp</shortname>
<uri> http://www.manning.com/jsptagsbook/simple-taglib </uri>
<info>
A simple sample tag library
</info>

<tag>
<name>cookievalue</name>
<tagclass>book.simpletasks.CookieValueTag</tagclass>
<bodycontent>empty</bodycontent>
<info>
Get a cookie's value.
</info>
<attribute>
<name>cookiename</name>
<required>true</required> 
</attribute>
</tag>


<tag>
<name>lowercase</name>
<tagclass>book.simpletasks.LowerCaseTag</tagclass>
<bodycontent>JSP</bodycontent>
<info>
Put body in lowercase.
</info>
</tag>
</taglib>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?