I am using ASPRunner. I have made search and list pages of my access database with Total of [C20] & [C40] Colums of Database. Problem is that ASPRunner Total option is dividing Total into various pages according to database and search query. For example i m searching word "Sugar" in my database. The Result is showing 2 pages and Total of [C20] and [C40] Colum is showing total as per pagewise. 1st page showing [C20] total is 500 and 2nd page is 200. I want to need changes in code that Total should not be divide in various pages according to search query it must be show [C20] Total 700 unless i move to 2nd page.
Would appreaciate sample code or Help. Below code is showing total of the [C20] colum not with search query.
str = "select sum(C20) from 652
Set rstmp = server.CreateObject("ADODB.Recordset")
rstmp.open str,dbConnection
Response.write "C20 Total: " & rstmp(0)
rstmp.close
set rstmp=nothing