?? selling.asp
字號(hào):
<!--#include file="conn.asp" -->
<!-- #include file="inc/adovbs.inc" -->
<!-- #include file="inc/info.asp" -->
<!-- #include file="inc/const.asp" -->
<%
header
'on error resume next
dim strsql,userid
userid=request.querystring("user_id")
if userid ="" then
%>
錯(cuò)誤的參數(shù)
<%else
sql="select * from auctions where aucItemOwner ="&userid&" and aucended='N' and aucItemOwner="&userid
set rs=conn.execute(sql)
if rs.eof then
response.write "該用戶名不存在<br>或者該用戶現(xiàn)在沒有在賣的商品!"
else
response.write "該用戶正在賣的商品有:<br>"
while not rs.eof
response.write "<a href="&weburl&"viewaucid.asp?aucid="&rs("aucid")&">"&rs("aucItemTitle")&"</a><br>"
rs.movenext
wend
end if
end if
footer
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -