publish_query.jsp

来自「招标网站」· JSP 代码 · 共 67 行

JSP
67
字号
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>招标项目查询</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="/JBlack/company/css/style.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="100%"  border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td nowrap class="title1">您的位置:我要招标--招标查询</td>
  </tr>
</table>
<table width="100%"  border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td width="30px" nowrap class="toolbar"><br></td>
    <td width="80px" nowrap class="toolbar" >
    <a href="/JBlack/servlet/ShowPublish?query=current">进行中的招标</a></td>
    <td width="20px" nowrap class="toolbar">|</td>
    <td width="110px" nowrap class="toolbar" >
    <a href="/JBlack/servlet/ShowPublish?query=end">结束时间已到的招标</a></td>
    <td width="20px" nowrap class="toolbar">|</td>
    <td width="90px" nowrap class="toolbar" >
    <a href="/JBlack/servlet/ShowPublish?query=last">已结束的招标</a></td>
   
    <td width="20px" nowrap class="toolbar">|</td>
  </tr>
</table>
<table width="100%"  border="0" align="center" cellspacing="1">
  <tr>
    
    <td class="title1">TP_id</td>
	<td class="title1">招标方</td>
	<td class="title1">中标方</td>
    <td class="title1">招标名称</td>
    <td class="title1">起价</td>
    <td class="title1">加减幅度</td>
    <td class="title1">招标项目描述</td>
    <td class="title1">发布时间</td>
    <td class="title1">申请截止时间</td>
    <td class="title1">竞价开始时间</td>
    <td class="title1">竞价截止时间</td>
    <td class="title1">状态</td>
  </tr>
  <c:forEach items="${tpublishs}" var="tpublishs">
  <tr>
    <td align="center">${tpublishs.tpid}&nbsp;</td>
	<td align="center">${tpublishs.tcid}&nbsp;</td>
	<td align="center">${tpublishs.tpwinner }&nbsp;</td>
    <td align="center">${tpublishs.tpname }&nbsp;</td>
    <td align="center">${tpublishs.tpinitPrice }&nbsp;</td>
    <td align="center">${tpublishs.tpmodPrice } &nbsp; </td>
    <td align="center">${tpublishs.tpdescription }&nbsp;</td>
   	<td align="center">${tpublishs.tppubDate }&nbsp;</td>
   	<td align="center">${tpublishs.tpdeadline }&nbsp;</td>
   	<td align="center">${tpublishs.tpgameDate }&nbsp;</td>
   	<td align="center">${tpublishs.tpgameDeadline }&nbsp;</td>
   	<td align="center">${tpublishs.tpstatus }&nbsp;</td>  
    </tr>  
</c:forEach> 
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?