<%if trim(request("keyword"))<>""thenresponse.Write"搜索條件為<font color='#FF0000'>"select case request("select")case "title"xuanzhe="書名"case "author"xuanzhe="作者"case "bookid"xuanzhe="編號"end selectresponse.Write xuanzheresponse.Write"</font>,關鍵字為<font color='#FF0000'>"&request("keyword")&"</font>"response.Write"的圖書,記錄數共 <font color='#FF0000'>"&rs.recordcount&"</font>"response.Write"個,信息如下:<p>"if rs.eof and rs.bof thenresponse.Write"當前沒有你要找的書!"response.Endend ifresponse.Write"<table border='1'>"response.Write"<tr><td><b>編號</b></td><td><b>名稱</b></td>"response.Write"<td><b>作者</b></td></tr>"do while not rs.eofresponse.Write"<tr><td><b>"&rs("bookid")&"</b></td><td><b>"&rs("title")&"</b></td>"response.Write"<td><b>"&rs("author")&"</b></td></tr>"rs.movenextloopresponse.Write"</table>"end if%>
添加回答
舉報
0/150
提交
取消