contract_index_sql.jsp
来自「《JSP数据库系统开发完全手册》配套关盘」· JSP 代码 · 共 27 行
JSP
27 行
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*"%>
<% request.setCharacterEncoding("gb2312"); %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="../css/style1.css" rel="stylesheet">
</head>
<%
String id=request.getParameter("id");
String clientname=request.getParameter("clientName");
%>
<body>
<br>
<img src="../images/Manual1.gif" width="16" height="16"> 合同编号:<font color="#993300"><%=id%></font> <img src="../images/ico/icon_group.gif" width="15" height="15">客户名称:<font color="#993300"><%=clientname%></font>
<hr color="#006699" size="1">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="25"> <a href="Contract_matter_Index.jsp?id=<%=id%>&&clientName=<%=clientname%>" target="bottomFrame">合同内容</a> | <a href="#">收款记录</a> | <a href="#">外包费记录</a> | <a href="#">基础业务记录</a> | <a href="#">合同变更记录</a> <hr color="#006699" size="1"></td>
</tr>
<tr>
<td height="25"> </td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?