-
Hi...
how can I get number of record from a query, I'm using "recordcount" but it seems it doesnt work..
<%strQuery = "select * from Images"
set rsResult=connDB.Execute(strQuery)%>
<% dim NumberRow, rest
NumberRow= int(rsResult.recordcount/3)
rest= rsResult.recordcount mod 3%>
..I'm making a table with only 3 columns
...and I'd like to know if I can use "int" and "mod" like we use in Visual basic
betto
betto:)terra.com.pe
-
-
select count(*) from Images
-
thanks monte 96.... it worked
ahhhh then i realized that "mod" works like in VB..
bye.. thank you.. all