ex6_55.txt
来自「j2ee core design patterns」· 文本 代码 · 共 36 行
TXT
36 行
Example 6.55 Custom Tag Helper Strategy
<%@ taglib uri="/web-INF/corepatternstaglibrary.tld"
prefix="corepatterns" %>
<html>
<head><title>Employee List</title></head>
<body>
<div align="center">
<h3> List of employees in <corepatterns:department attribute="id"/>
department - Using Custom Tag Helper Strategy. </h3>
<table border="1" >
<tr>
<th> First Name </th>
<th> Last Name </th>
<th> Designation </th>
<th> Employee Id </th>
<th> Tax Deductibles </th>
<th> Performance Remarks </th>
<th> Yearly Salary</th>
</tr>
<corepatterns:employeelist id="employeelist_key">
<tr>
<td><corepatterns:employee attribute="FirstName"/> </td>
<td><corepatterns:employee attribute="LastName"/></td>
<td><corepatterns:employee attribute="Designation"/> </td>
<td><corepatterns:employee attribute="Id"/></td>
<td><corepatterns:employee attribute="NoOfDeductibles"/></td>
<td><corepatterns:employee attribute="PerformanceRemarks"/></td>
<td><corepatterns:employee attribute="YearlySalary"/></td>
<td>
</tr>
</corepatterns:employeelist>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?