📄 inc_top.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -