176142998

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  116 Posts :: 0 Stories :: 45 Comments :: 0 Trackbacks

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
    + request.getServerName() + ":" + request.getServerPort()
    + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
   <base href="<%=basePath%>">

   <title>Struts 2 标签之s:property的用法</title>

   <meta http-equiv="pragma" content="no-cache">
   <meta http-equiv="cache-control" content="no-cache">
   <meta http-equiv="expires" content="0">
   <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
   <meta http-equiv="description" content="This is my page">
   <!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>

<body>
   <table border="1">
    <tr>
     <th>编号</th>
     <th>书名</th>
     <th>作者</th>
    </tr>
    <s:iterator value="#{'Spring 2.0':'李刚','Java':'张三','j2ee study':'李四'}" id="name" status="st">
     <tr <s:if test="#st.odd">style="background-color:#bbbbbb"</s:if> >
      <td><s:property value="#st.count"/></td>
      <td><s:property value="key"/></td>
      <td><s:property value="value"/></td>
     </tr>
    </s:iterator>
   </table>
</body>
</html>
效果图:

posted on 2008-08-04 15:15 飞飞 阅读(306) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: