图书管理系统查询续借问题
大家帮我看看,问题在哪里?当我没有用选择的时候,可以查询到,但当我用IF语句的时候,他会提示说下面用到的字段找不到,大家帮帮忙啊。 还有就是续借的代码应该怎么编写的?比如说设定续借时间都是15天,那么对归还日期应该怎么处理? dim a a=trim(request("a"))
book=trim(request("book")) set rs=server.createobject("adodb.recordset")
if a= "书名" then sql="select * from ts_tsbm where c_title ='"&book&"' " end if if a="编号" then sql="select * from ts_tsbm where c_request_id ='"&book&"' " end if if a="作者" then sql="select * from ts_tsbm where c_first_writer ='"&book&"' " end if if a="出版社" then sql="select * from ts_tsbm where c_publisher ='"&book&"' "
end if