📄 search_maker.jsp~10~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.util.*"%>
<%@ page import="zhaobiao.db.*,zhaobiao.date.*"%>
<%!
String getStr(String str)
{
try
{
String temp=new String(str.getBytes("ISO8859_1"));
return temp;
}
catch(Exception e)
{
return null;
}
}
%>
<%
Search search=new Search();
Vector list=new Vector();
String keys=null;
if(request.getParameter("keys")!=null)
keys=getStr(request.getParameter("keys").trim());
list=search.searchMaker(keys);
search.freeCon();
%>
<html>
<head>
<title>xxx</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="style.css" type="text/css">
<script language="JavaScript">
<!--
function MM_popupMsg(msg) { //v1.0
alert(msg);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<center>
<table width="776" border="0" cellspacing="0" cellpadding="0" height="103">
<tr>
<td height="65"> <a href="index.jsp"><img src="images/zhaobiao_01.jpg" width="777" height="89" align="absbottom" border="0"></a></td>
</tr>
</table>
<a href="product1.jsp">产品信息</a> <a href="project1.jsp">项目信息</a> <a href="maker1.jsp">厂商信息</a>
<table width="774" border="0" cellspacing="0" cellpadding="0" height="88">
<tr>
<td align="center" height="67">
<table width="100%" border="0" cellspacing="0" cellpadding="1" align="center">
<tr bgcolor="0092B8">
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="1" bgcolor="#FFFFFF">
<tr align="center">
<td>
<table width="764" border="0" cellspacing="1" cellpadding="0">
<tr align="center" bgcolor="E1D1B7">
<td height="25" align="center" colspan="7" width="758"><b>厂商信息</b></td>
</tr>
<tr bgcolor="F6F2E6">
<td height="25" align="center" width="126"><font color="#FF0000">
投标厂商名称</font></td>
<td align="center" width="141"><font color="#FF0000">总部地址</font></td>
<td align="center" width="87"><font color="#FF0000">注册时间</font></td>
<td align="center" width="142"><font color="#FF0000">注册地址</font></td>
<td align="center" width="76"><font color="#FF0000">注册资金</font></td>
<td align="center" width="74"><font color="#FF0000">法人姓名</font></td>
<td align="center" width="88"><font color="#FF0000">详细信息</font></td>
</tr>
<%
if(list!=null)
{
for(int i=0;i<list.size();i++)
{
Maker mk=new Maker();
mk=(Maker)list.elementAt(i);
%>
<tr bgcolor="F6F2E6" align="center">
<td height="25" width="126">
<p><a href="maker2.jsp?mkid=<%=mk.getMaker_id()%>"><%=mk.getMaker_name()%></a></p>
</td>
<td width="141"><%=mk.getMaker_address()%></td>
<td width="87"><%=mk.getMaker_cr_time()%></td>
<td width="142"><%=mk.getMaker_cr_address()%></td>
<td width="76"><%=mk.getMaker_cr_cost()%></td>
<td width="74"><%= mk.getMaker_fr_name()%></td>
<td width="88"><a href="makerinfo.jsp?mkid=<%=mk.getMaker_id()%>" target="_blank">详细信息</a></td>
</tr>
<%}}%>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<form method="POST" action="search1.jsp">
关键字:
<input type="text" name="keys" value="<%=keys%>">
<select name="searchid">
<option selected value=0>所有</option>
<option value=1>项目</option>
<option value=2>厂商</option>
<option value=3>产品</option>
</select>
<input type="submit" name="submit" value="搜索">
</form>
<p> </p>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -