iteminfo.srf

来自「Vc.Net入门与提高源码」· SRF 代码 · 共 47 行

SRF
47
字号
{{handler Bids.dll/ViewItem}}
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>{{ItemName}} Bidding history</TITLE>
</HEAD>
{{include header.srf}}
<h1>{{ItemName}}</h1>
<hr>
{{ItemDescription}}
<hr>
<p>Offered for sale by <a href=userinfo.srf?userid={{GetUserID}}>{{GetUserName}}</a>
<hr>
<h1 align=center>Bids</h1>
<table align=center border=1>
	<tr>
		<td></td>
		<td>Bidder ID</td>
		<td>Bid Amount</td>
	</tr>
{{if GetNextBid}}
	<tr>
		<td>High bidder</td>
		<td><a href=userinfo.srf?userid={{GetBidderID}}>{{GetBidderName}}</a></td>
		<td>{{GetBidAmount}}</td>
	</tr>
{{endif}}
{{if IsFullDisplay}}
{{while GetNextBid}}
	<tr>
		<td></td>
		<td><a href=userinfo.srf?userid={{GetBidderID}}>{{GetBidderName}}</a></td>
		<td>{{GetBidAmount}}</td>
	</tr>
{{endwhile}}
{{endif}}
</table>
<hr>
{{if IsNotFullDisplay}}
<p><a href=iteminfo.srf?itemid={{GetItemID}}&view=full>View all bids</a> on this item.
{{endif}}
<p><a href=addbid.srf?itemid={{GetItemID}}>Bid</a> on this item.
<p><a href=browse.srf>Browse</a> all items.
{{include footer.srf}}
</HTML>

⌨️ 快捷键说明

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