码迷,mamicode.com
首页 > 其他好文 > 详细

struts1 标签引入

时间:2014-09-14 16:39:47      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   for   文件   div   sp   

1 将tld文件放入相关目录

/项目名称/WebContent/WEB-INF/tld/c.tld

2 jsp页面

<%@taglib prefix="c" uri="/WEB-INF/tld/c.tld" %>

3 jsp页面使用

<html>
    <body>
        <table align="center" border="1" 
    bordercolor="blue" cellpadding="0" 
    cellspacing="0" width="80%">
          <tr bgcolor="blue">
            <td>Id</td><td>Name</td>
        <td>Password</td><td>Address</td>
          </tr>
          <c:forEach var="u" items="${ users }">
             <tr>
               <td>${u.id }</td>
               <td>${u.name }</td>
               <td>${u.password }</td>
               <td>${u.address }</td>
             </tr>
          </c:forEach>
      </table>
    </body>
</html>

 

struts1 标签引入

标签:style   blog   color   使用   ar   for   文件   div   sp   

原文地址:http://www.cnblogs.com/cici-new/p/3971182.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!