userinfo.srf

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

SRF
35
字号
{{handler Bids.dll/ViewUser}}
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Developer Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
<TITLE>Information on {{GetUserName}}</TITLE>
</HEAD>
{{include header.srf}}
<h1>{{GetUserName}}'s auctions:</h1>
<table cellspacing=10>
<tr>
	<th align = center>Item name</td>
	<th align = center>Start date</td>
	<th align = center>End date</td>
	<th align = center>Current bid</td>
</tr>
{{while GetNextItem}}
<tr>
	<td><a href="iteminfo.srf?itemid={{GetItemID}}">{{GetItemName}}</a></td>
	<td>{{GetStartDate}}</td>
	<td>{{GetEndDate}}</td>
	<td>{{GetMaxBid}}</td>
	{{if CurrentUser}}
	<td><a href="edititem.srf?itemid={{GetItemID}}">Edit this item</a></td>
	{{endif}}
</tr>
{{endwhile}}
</table>	
{{if CurrentUser}}
<p>You are the currently logged on user
{{endif}}

{{include footer.srf}}
</HTML>

⌨️ 快捷键说明

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