📄 offerstate.jsp
字号:
<%@ page language="java" import="java.util.*,domain.*"
pageEncoding="UTF-8"%>
<%
Offers offer = (Offers)request.getAttribute("offercontent");
Products p = (Products)request.getAttribute("productname");
%>
<html>
<head>
<title>交易撮合</title>
<style type="text/css">
<!--
a:link {
COLOR: #3e4a59; LINE-HEIGHT: 18px; FONT-FAMILY: "Verdana";text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
<meta http-equiv="content-type" content="text/html;charset=gbk">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD height=25> 您现在的位置:<a href="htoffer.do">帖子管理</a> >>> 修改帖子
</TD>
</TR>
<TR>
<TD bgColor=#2650a6>
<IMG height=1 src="images\blank(1).gif" width=1>
</TD>
</TR>
<TR>
<TD>
<IMG height=2 src="images\blank(1).gif" width=574>
</TD>
</TR>
</TBODY>
</TABLE>
<form name="" method="post" action="/webpk/htchangeoffer.do">
<table align="center">
<tr>
<td>帖子ID</td><td><input type="text" readonly="true" value="<%=offer.getOffersid() %>" name="id"></td>
</tr>
<tr>
<td>产品名称</td><td><input type="text" readonly="true" value="<%=p.getTitle() %>" name=""></td>
</tr>
<tr>
<td>帖子内容</td><td><textarea rows="5" name="offercontent"><%=offer.getContent() %></textarea></td>
</tr>
<tr>
<td>开始时间</td><td><input type="text" readonly="true" value="<%=offer.getPost_time() %>" name=""></td><td>结束时间</td><td><input type="text" readonly="true" value="<%=offer.getEnd_time() %>" name=""></td>
</tr>
<tr>
<td>发贴人的电子邮箱</td><td><input type="text" readonly="true" value="<%=offer.getEmail() %>" name=""></td>
</tr>
<tr>
<td>商品数量</td><td><input type="text" readonly="true" value="<%=offer.getAmount() %>" name=""></td>
</tr>
<tr>
<td>交货方式</td><td><input type="text" value="<%=offer.getDeliver() %>" name="deliver"></td><td>付款方式</td><td><input type="text" value="<%=offer.getPayment() %>" name="payment"></td>
</tr>
<tr>
<td>理想价格</td><td><input type="text" readonly="true" value="<%=offer.getPrice() %>" name=""></td>
</tr>
<tr>
<td>浏览次数</td><td><input type="text" readonly="true" value="<%=offer.getHits() %>" name=""></td>
</tr>
<tr>
<td>是买还是卖</td><td><input type="text" readonly="true" value="<%=offer.getTrade() %>" name=""></td>
</tr>
<tr>
<td>帖子状态</td><td><input type="text" value="<%=offer.getState() %>" name="state"></td>
</tr>
<tr>
<td>备注</td><td><textarea rows="5" name="remark"><%=offer.getRemark() %></textarea></td>
</tr>
<tr><td colspan="4" align="right"><input type="submit" value="提 交"></td></tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -