inc_top.jsp
来自「电信的网厅的整站代码」· JSP 代码 · 共 40 行
JSP
40 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.doone.uurm.Sys_Purview"%>
<%@ page import="com.doone.data.DacClient"%>
<%!
String getCurrPosition(String purvCode){
DacClient db = new DacClient();
return Sys_Purview.getFullPath(db, purvCode);
}
%>
<%
String purvCode = request.getParameter("purvCode");
String hasImage = request.getParameter("hasImage");
String position ="";
if ((purvCode!=null)&&(purvCode.length()!=0))
position = getCurrPosition(purvCode);
%>
<%if ((hasImage!=null)&&hasImage.equals("1")) {//BBS显示的图标说明%>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr height="5px"><td colspan="3"></td></tr>
<tr class="TitleTR">
<td width="60px" style="display: none;">
<a href="#">显示主菜单</a>
</td>
<td width="90%">当前位置:<%= position%></td>
</tr>
</table>
<%}else {%>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr height="5px"><td colspan="2"></td></tr>
<tr class="TitleTR">
<td width="60px" style="display: none;">
<a href="#">显示主菜单</a>
</td>
<td width="90%">当前位置:<%= position%></td>
</tr>
</table>
<%}%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?