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

📄 buttonbar.jspf

📁 RESIN 3.2 最新源码
💻 JSPF
字号:
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %><%-- include file to make a button bar --%><table border='0' width='100%'>  <tr>    <td>      <a href="<c:url value='/index.jsp'/>">Hogwart's Home</a>    </td>    <%-- is the user logged in? --%>    <c:choose>      <%-- logged in --%>      <c:when test="${empty pageContext.request.userPrincipal}">	<td align='right'>	  <a href="<c:url value='/home.jsp'/>">login</a>	</td>      </c:when>      <%-- not logged in --%>      <c:otherwise>	<td align='right'>	  <a href="<c:url value='/home.jsp'/>">your homepage</a>	</td>		<td align='right'>	  <a href="<c:url value='/logout.jsp'/>">logout</a>	</td>      </c:otherwise>    </c:choose>  </tr></table>

⌨️ 快捷键说明

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