![]() |
Sergey Kornilov admin 3/10/2004 |
You can modify Sub LoopRs in ..._list.asp for this purpose. See my changes in bold. ' display table with results sub loopRs(rsData,nPageSize) Total1=0 Total2=0 ' Pagination: dim iShadeTheDetail dim iNumberOfRows iNumberOfRows = 0 if isObject(rsData) then  ' Pagination: UNTIL iNumberOfRows>=maxrecs  DO UNTIL rsData.eof OR iNumberOfRows>=nPageSize  Total1 = Total1 + rsData("Field1")  Total2 = Total2 + rsData("Field2") ...  Loop   response.write "<tr class=blackshade><td class=blackshade>" & Total1 & "</td><td>" & Total2 & "</td></tr>" end if end sub
|
C
|
craigcjr 3/10/2004 |
Great info, ASPRunner best money I've spent for my business. |
C
|
craigcjr 3/13/2004 |
Got my counts done, everything works great, what a great program........ |