📄 contractindex.jsp
字号:
<jsp:useBean id="contract" class="src.wuyang.Contract" 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 contractId;%>
<%
contractId = request.getParameter("contractId");
contract.setGlobal(global);
int count = contract.load(contractId);
if (count <=0) {
response.sendRedirect("../pub/DBErr.jsp?rtcode=-103"); }
if(((global.empId).equals(contract.getProposer()) == false)||(contract.getContractState()==3))
response.sendRedirect("updateContract.jsp?massage=无权修改");
%>
<frameset rows="300,150,150">
<frame src="ContractUpdate.jsp?contractId=<%=contractId%>">
<frame src="ContractProductUpdate.jsp?contractId=<%=contractId%>">
<frame src="UpdateContractInstalment.jsp?contractId=<%=contractId%>">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -