williem

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  1 随笔 :: 4 文章 :: 0 评论 :: 0 Trackbacks

<bean:cookie id="category" name="cat"/>
替换
<c:set var="category" value="${cookie['cat'].value}"/>
-------------------------------------------
<bean:define="name" value="ObjName"/>
替换
<c:set var="name" value="${ObjName}"/>
-------------------------------------------
<bean:header id="browser" name="User-Agent"/>
替换
<c:set var="browser" value="${header['User-Agent']}"/>
-------------------------------------------
<bean:include id="yahooContents" href="
http://www.yahoo.com/"/ >
替换
<c:import var="yahooContents" url="
http://www.yahoo.com/ "/>
--------------------------------------------
<bean:parameter id="color" name="clr"/>
替换
<c:set var="color" value="${param['clr']}"/>
--------------------------------------------
<bean:write name="ObjName"/>
替换
<c:out value="${ObjName}"/>
--------------------------------------------
<logic:empty name="results"/>
Your value is empty
</logic>
替换
<c:if test="${empty results}">
Your value is empty
</c:if>
--------------------------------------------
<logic:equal name="val" value="0">
val=0
</logic:equal>
替换
<c:if test="${value==0}">
val=0
<c:if>
--------------------------------------------
<logic:greaterEqual name="count" value="5">
Count is greater than or equal to five
</logic:greaterEqual>
替换
<c:if test="${count>=5}">
Count is greater than or equal to five
</c:if>
--------------------------------------------
<logic:iterate id="result" collection="<%=results%>">
Result:<%=result%><bt>
</logic:iterate>
替换
<c:forEach var="result" items="${results}">
Result:<c:out value="${result}"/>
</c:forEach>
--------------------------------------------
<logic:notEmpty name="results">
Results is not empty
</logic:notEmpty>
替换
<c:if test="${!empty results}">
Results is not empty
</c:if>
---------------------------------------------
<logic:notEqual name="count" value="0">
Count is not equal to zero
</logic:notEqual>
替换
<c:if test="${count!=0}">
Count is not equal to zero
</c:if>

posted on 2006-06-19 08:32 阔阔 阅读(153) 评论(0)  编辑  收藏 所属分类: 标签类

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


网站导航: