toddsalcedo
Programmer
I have a table, fed from a database, that shows 29 items. I need to break that down further by splitting out the 29 items into different categories. The problem is that one of the items is multiple words and my count function breaks at that point. Here's the code:
<%
if RS("status") = "Resolution of Comments" then
do while RS("status") = "Resolution of Comments"
counter5=counter5+1
%>
<%RS.movenext
loop
end if
%>
There are 10 counter sections in all, all of them counting different rows of the table. Any ideas of a better way to try and count this?
<%
if RS("status") = "Resolution of Comments" then
do while RS("status") = "Resolution of Comments"
counter5=counter5+1
%>
<%RS.movenext
loop
end if
%>
There are 10 counter sections in all, all of them counting different rows of the table. Any ideas of a better way to try and count this?