Developing common tags in JSPs

Source: Internet
Author: User

S tag:
<%@ taglib prefix= "s" uri= "/struts-tags"%>
Value in Request: <s:property value= "#request. Tipmessage"/>
Fetch collection length in Request: <s:property value= "#request. List.size ()"/>
Request in the judgment:
<s:if test= "#request. List.size ()!! = 0" >
If set up!!!
</s:if>
<s:else>
If behind can be with else, can also follow ElseIf
</s:else>
Iteration:
<s:iterator id= "li" value= "#request. List" status= "St" >
<s:property value= "#li. FullName"/>
<s:property value= "#li. Level"/>
<s:if test= "#li. usertype== ' 02 ' | | #li. usertype== ' "" >
<s:property value= "#li. Agentprovincename"/>
</s:if>
</s:iterator>
C Tag:
<%@ taglib prefix= "C" uri= "Http://java.sun.com/jsp/jstl/core"%>
Value in Request: Request.setattribute ("name", "Zhuang");
${name}
Request takes object: Request.setattribute ("name", person);
${person.age}
Judgment: <c:if test= "${empty Biaoji | | biaoji== '"} ">
Satisfies the mark to be empty or 01
</c:if>
Traverse:
<c:foreach items= "${list}" var= "message" varstatus= "index" >
<tr>
<td><c:if test= "${message.type== '}" > System messages </c:if></td>
<td>${message.content}</td>
<td>
<c:choose>
<c:when test= "${message.isread== '}" > Unread </c:when>
<c:otherwise> Read </c:otherwise>
</c:choose>
</td>
<td>${message.createTime}</td>
</tr>
</c:forEach>

Developing common tags in JSPs

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.