May 29, 2000 #1 spacehawk Programmer May 17, 2000 30 US Is there a command in ASP that returns the number of records in a database table?
May 30, 2000 #2 NickBulka Programmer Aug 10, 1999 832 US select count(*) from tablename<br> <p>nick bulka<br><a href=mailto:nick@bulka.com>nick@bulka.com</a><br><a href= > </a><br> Upvote 0 Downvote
select count(*) from tablename<br> <p>nick bulka<br><a href=mailto:nick@bulka.com>nick@bulka.com</a><br><a href= > </a><br>
May 30, 2000 #3 LuvASP Programmer May 18, 2000 46 US sql = "SELECT count(*) AS RecordCount FROM table"<br>rs.open sql, activeconnection<br><br>count = rs("RecordCount"<br>response.write count Upvote 0 Downvote
sql = "SELECT count(*) AS RecordCount FROM table"<br>rs.open sql, activeconnection<br><br>count = rs("RecordCount"<br>response.write count