希望各们版主大侠们给予解答下if rs.recordcount>=100
如有 abc表 id a1 200
如下例:其中的if rs.recordcount>=100 then 这名 100是直接写上去的
我的目的是读取abc表 a 字段 的数据 请问版主或高作们该怎么改动以下代码拉?
<%if Request("action")="add" then
set rs=server.CreateObject("adodb.recordset")
sql="select * from list "
rs.open sql,conn,3,2
if rs.recordcount>=100 then
response.write "<script language=javascript>"
response.write "alert('你只能添加100首歌曲!已经满了!!');"
'response.write "history.go(-1);"
response.write "</script>"
response.write "<script language=javascript>location='javascript:history.back(1)'</script>"
Response.End
end if
%>