📄 pre_bid.asp
字号:
<!-- #include file="inc/info.asp" -->
<!-- #include file="inc/const.asp" -->
<!-- #include file="conn.asp" -->
<%
response.buffer=true
'on error resume next
header
if session("user")="" then
response.redirect "login.asp"
else
sqlget = "select regValidated from users where regValidated='Y' and regusername='" &session("user")&"'"
set rsget =conn.execute(sqlget)
if rsget.eof then
response.redirect "info_change.asp"
else
sUser = session("user")
auc_title=request("auc_title")
auc_place=request("auc_place")
zhifu=request("zhifu")
getnum=request("getnum")
yunfei=request("yunfei")
aucItemOwner=request("aucItemOwner")
bid_price = FVal(Request.Form("bid_price"))
auc_id = FVal(Request.Form("auc_id"))
end if
end if
%>
<form method=post action=save_bid.asp>
<input type="hidden" name="auc_title" value='<%=auc_title%>'>
<input type="hidden" name="auc_place" value='<%=auc_place%>'>
<input type="hidden" name="bid_price" value='<%=bid_price%>'>
<input type="hidden" name="getnum" value='<%=getnum%>'>
<input type="hidden" name="zhifu" value='<%=zhifu%>'>
<input type="hidden" name="yunfei" value='<%=yunfei%>'>
<input type="hidden" name="auc_id" value='<%=auc_id%>'>
<input type="hidden" name="bidItemID" value='<%=bidItemID%>'>
<input type="hidden" name="bidItemsonID"value='<%=bidItemsonID%>'>
<input type="hidden" name="BidderID" value='<%=BidderID%>'>
<input type=hidden name="aucItemOwner" value="<%=aucItemOwner%>">
<table width="100%" border="0" cellspacing="1" cellpadding="0" id="bg01">
<tr>
<td align="center" id="bg02" height="25"><b>请进行出价确认</b></td>
</tr>
</table>
<br>
<table width="75%" border="0" cellspacing="0" cellpadding="0" align="center" id="b2">
<tr>
<td height="20" id="bg01">请确认出价信息</td>
</tr>
</table>
<table width="75%" border="0" cellspacing="1" cellpadding="0" id="bg01" align="center">
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" id="b2" bgcolor="#FFFFFF">
<tr>
<td height="20" width="100" align="right">商品名称:</td>
<td height="20" width="200" align="left"> <%=auc_title%></td>
<td height="20" width="100" align="right">商品所在地:</td>
<td height="20" align="left"> <%=auc_place%></td>
</tr>
<tr>
<td height="20" align="right" width="100">您的最高出价:</td>
<td height="20" align="left" width="200"> <%=bid_price%></td>
<td height="20" align="right" width="100">谁负担运费:</td>
<td height="20"align="left"> <%=yunfei%> </td>
</tr>
<tr>
<td height="20" align="right" width="100">购买数量:</td>
<td height="20" align="left" width="200"> <%=getnum%></td>
<td height="20" align="right" width="100">支付方式:</td>
<td height="20" align="left"> <%=zhifu%></td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<br>
<table width="95%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr align="center">
<td>
<input name="bt13" type=submit id="b1" STYLE="color: white;border-color: #CECBCE; background-color: #EF7508;" o1nClick="calc()" value=" 好了就这样投标了 " >
<input name="bt132" type=button id="b1" style="color: white;border-color: #CECBCE; background-color: #EF7508;" o1nclick="calc()" value=" 取消并返回商品页面 " onclick="javascript:history.back();">
</td>
<td></td>
</tr>
</table>
</form>
<%
footer
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -