?? selectbasekhxx.jsp
字號:
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<%@ page import="com.domain.KhxxForm"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>查看客戶的基本信息</title>
<style type="text/css">
<!--
body {
background-color: #000000;
margin-left: 0px;
margin-top: 0px;
}
td{
font-size:9pt;
}
.style1 {font-size: 11pt}
-->
</style>
</head>
<script Language="JavaScript">
function projectDelete(date){
if(confirm("是否刪除編號為["+date+"]這一組數據嗎?"))
window.location="khxxDelete.do?id="+date;
}
</script>
<body>
<table width="579" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td> </td>
</tr>
</table>
<table width="579" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF"> <table width="579" height="487" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF"><table width="579" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="2%" height="28"> </td>
<td width="9%" background="images/circle.jpg"> </td>
<td width="89%" bgcolor="#FFFFFF"><span class="style2 style1">客戶信息查詢</span></td>
</tr>
<tr style="line-height:2px">
<td width="2%" height="5"> </td>
<td height="5" colspan="2" bgcolor="#D4D0C8"> </td>
</tr>
<tr align="center" valign="top" bgcolor="#FFFFFF">
<td height="454" colspan="3"><br>
<%List list=(List)request.getAttribute("khxxlist");%>
<table width="496" height="64" border="0" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFCC33">
<td width="83" height="24"><div align="center">客戶編號</div></td>
<td width="153"><div align="center">客戶名稱</div></td>
<td width="111"><div align="center">企業性質</div></td>
<td width="128"><div align="center">操作</div></td>
</tr>
<%for(int i=0;i<list.size();i++){
KhxxForm form=(KhxxForm)list.get(i);
%>
<tr bgcolor="#FFFFFF">
<td height="24"><%=form.getKhxx_id()%></td>
<td><%=form.getKhxx_mc()%></td>
<td><%=form.getKhxx_qyxz()%></td>
<td align="center"><p><a href="queryClientContent.do?id=<%=form.getKhxx_id()%>">查看客戶全部信息</a></p></td>
</tr>
<%}%>
</table>
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -