toolbar.jsp

来自「java电信经典-学习例子源代码」· JSP 代码 · 共 24 行

JSP
24
字号
<%@ page pageEncoding="gb2312" isELIgnored="false"%>
<%@ taglib   uri="http://struts.apache.org/tags-html"  prefix="ui" %>
<!-- 标准标记库 -->
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<table width='778' border='0' cellspacing='0' cellpadding='0'>
	<tr>
		<td width='13' height='13'><ui:img page='/images/sy_10.jpg' width='13' height='61'/></td>
		<td width='752' background='${pageContext.request.contextPath}/images/sy_12.jpg'>
		<table width='100%' border='0' cellspacing='0' cellpadding='0'>
			<tr>
				<td align='left'>
				<!-- 这里的工具条上的菜单是由权限决定的,在登录的时候存放在session的modules中 -->
				<a href="${pageContext.request.contextPath}/index.do" class="cl">首页</a><span class="STYLE4">|</span>
				<c:forEach var="item" items="${sessionScope.toolbars}">
					<a href="${pageContext.request.contextPath}${item.url}?method=index&moduleid=${item.id }" class="cl">${item.name }</a><span class="STYLE4">|</span>
				</c:forEach>  
				
  				</td>
      		</tr>
    	</table>
    	</td>
    	<td width='13'><ui:img page='/images/sy_13.jpg' width='14' height='61'/></td>
  	</tr>
</table>

⌨️ 快捷键说明

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