<%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
提交
取消