I\'m not quite familiar with programming ASP classic. I just need a small code to run on my webpage. How do i count the record of the returned query?
<% S
You can try this
Dim count count = 0 if strSQLscroll.eof <> true or strSQLscroll.bof <> true then while not strSQLscroll.eof count = count+1 strSQLscroll.movenext wend end if response.write(count)