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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to Response.Write the sumtotals? ----- i'm sure ita an easy one

Status
Not open for further replies.

cxc

Programmer
Jan 21, 2002
2
CA
I'm sure this is an easy question but i've tried a lot of variations and am stuck. my page.asp takes form values and adds them up. The isumtotal then determins what will happen next (goes to another page2.asp). I'm debugging the application. I need to write what the isumtotal is on page2.asp after the calculations.
I've never done this before byut saw somewhere to use Response.Write "isumtotal"
I tried this and it just worte "isumtotal" which is not what i want.... i want the value of isumtotal which is less than 100. Haow can i do this...???
 
If isumtotal is a variable you would write its value like this:

Response.Write (isumtotal)
 
Mithrilhall, thank you so much
Sometimes the littlest things can dive me crazy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top