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

📄 products.jsp

📁 一个java写的加密算法
💻 JSP
字号:
<%-- Copyright 2004-2005 Sun Microsystems, Inc.  All rights reserved. Use is subject to license terms.--%><%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %><%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %><fmt:setBundle basename="LocalStrings"/><html>  <head>    <title><fmt:message key="products.jsp.title"/></title>  </head>  <body>    <h1><fmt:message key="products.jsp.title"/></h1>    <hr>    <p><fmt:message key="products.jsp.overview"/></p>    <p><fmt:message key="products.jsp.invokedtwice"/></p>    <hr>    <h2><fmt:message key="products.jsp.products"/></h2>    <tags:displayProducts>      <jsp:attribute name="normalPrice">	<fmt:message key="products.jsp.item"/> ${name}<br/>	<fmt:message key="products.jsp.price"/> ${price}      </jsp:attribute>      <jsp:attribute name="onSale">	<fmt:message key="products.jsp.item"/> ${name}<br/>	<font color="red"><strike>Was: ${origPrice}</strike></font><br/>	<b> <fmt:message key="products.jsp.now"/> ${salePrice}</b>      </jsp:attribute>    </tags:displayProducts>    <hr>    <h2><fmt:message key="products.jsp.productstag"/></h2>    <tags:displayProducts>      <jsp:attribute name="normalPrice">	<b>${name}</b> @ ${price} <fmt:message key="products.jsp.each"/>      </jsp:attribute>      <jsp:attribute name="onSale">	<b>${name}</b> @ ${salePrice} <fmt:message key="products.jsp.each"/> (<fmt:message key="products.jsp.was"/> ${origPrice})      </jsp:attribute>    </tags:displayProducts>  </body></html>

⌨️ 快捷键说明

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