head.jsp

来自「实现了一个OA系统基本的功能」· JSP 代码 · 共 17 行

JSP
17
字号

<%
String username=(String)session.getAttribute("admin"); 
       if(username==null) {response.sendRedirect("../index.jsp");} %>
  <table border="0" width="780" height="32" background="picture/Blue hills.jpg">
     <tr>
       <td width="135" align="center"><a href="index.jsp"  target="_top" style="text-decoration:none">index</a></td>
		<td width="135" align="center"><a href="admin/worker.jsp" target="_top" style="text-decoration:none">worker</a></td>
	    <td width="135" align="center"><a href="admin/new.jsp" target="_top" style="text-decoration:none">news</a></td>
	    <td width="135" align="center"><a href="admin/notice.jsp" target="_top" style="text-decoration:none">notice</a></td>
	    <td width="135" align="center"><a href="admin/department.jsp" target="_top" style="text-decoration:none">department</a></td>
	    <td width="135" align="center"><a href="admin/perdesign.jsp" target="_top" style="text-decoration:none">perdesign</a></td>
    </tr>
  </table>


⌨️ 快捷键说明

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