下面提供给大家的是一个asp关于统计总数的实例代码,希望对大家有所帮助。
<%
function count_biao(biao)
set rskz=server.createobject("adodb.recordset")
set rskz=conn.execute("select count(*) from "&biao&"")
Response.Write rskz(0)
rskz.close
set rskz=nothing
end function
%>
<%= count_biao("news") %>