📄 rolerightindex.jsp
字号:
<jsp:useBean id="roleRight" class="src.com.RoleRight" scope="page"/>
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>
<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<% }
%>
<html>
<head>
<title>公司信息</title>
<link rel="stylesheet" href="../pub/style.css">
</head>
<%!String roleId;%>
<%
roleId = request.getParameter("roleId");
int count = roleRight.load(roleId + "");
if (count <= 0) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="-103" />
</jsp:forward>
<%
}
%>
<frameset rows="100,500">
<frame src="RoleRightUpdate.jsp?roleId=<%=roleId%>">
<frame src="ShangRightsDetail.jsp?roleId=<%=roleId%>">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -