Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

total repeat region 1

Status
Not open for further replies.

HashMan007

IS-IT--Management
Joined
Jun 3, 2002
Messages
4
Location
US
I am creating a page on my site where users can login and pay the bills that they owe us. The process will be:
Login page -> Billing page (states the amount owed to us) -> Customer info page with Credit card info. I have gotten as far as being able to show the amount owed to us, expample:
webhosting $40
webdevelopment $60
All of the info is stored on Msaccess database searched by userid sesssion vairable and used repeat region to display multiple records. Now my question is how do I dynamically add $40+$60 in repeat region??
 
I would asign the recordset values to 2 variables

varWebHosting = rsRecorset.Item("webhosting").Value
varWebdevelopment = rsRecorset.Item("webdevelopment").Value

Then response.write the 2 variables and the sum of them The secret of life is honesty and fair dealing. If you can fake that, you've got it made.
Groucho Marx (1895-1977)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top