⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set.jsp

📁 基于netbeans的java桌面应用程序合集
💻 JSP
字号:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>
<head>
  <title>JSTL: Expression Language Support -- Set Example</title>
</head>
<body bgcolor="#FFFFFF">
<h3>&lt;c:set&gt;</h3>

<h4>Setting application scope attribute "customerTable"</h4>

<c:set var="customerTable" scope="application">
<table border="1">
    <c:forEach var="customer" items="${customers}">
    <tr>
	  <td>${customer.lastName}</td>
	  <td><c:out value="${customer.address}" default="no address specified"/></td>
	  <td>
	    <c:out value="${customer.address}">
		  <font color="red">no address specified</font>
		</c:out>
      </td>
	</tr>
  </c:forEach>
</table>
</c:set>

<p> 
Using customerTable in another JSP page 
<a href="../ShowSource.jsp?filename=/elsupport/Set2.jsp"><img src="../images/code.gif" width="24" height="24" border="0"></a> 
<a href="../elsupport/Set2.jsp"><img src="../images/execute.gif" width="24" height="24" border="0"></a> 
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -