Code Bank
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgrammingCode Bank

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old April 5th, 2004, 05:34 PM
jule_641 jule_641 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 5 jule_641 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 16 m 35 sec
Reputation Power: 0
Can someone give some sample code

Hi,
I am building a form that has some text fields in which some amount can be entered.At the
end of all this i have a grand total field. As I enter amounts in these text fields, I should
be able to see the grand total added up and displayed in the grand totals field.Is there any
way to do this in asp or should I use some other.
Thanks.

Reply With Quote
  #2  
Old April 14th, 2004, 11:48 AM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,760 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 5 h 22 m 16 sec
Reputation Power: 443
You can do it like this
Code:
<script language="JavaScript">
function addValues()
{
	var num1 = document.form1.num1.value * 1;
	var num2 = document.form1.num2.value * 1;
	var num3 = document.form1.num3.value * 1;
	var total = num1 + num2 + num3;
	document.form1.txtTotal.value = total;
}
</script>
<body>
	<form name="form1">
		Num1: <input type="text" name="num1"><br>
		Num2: <input type="text" name="num2"><br>
		Num3: <input type="text" name="num3"><br>
		Total: <input type="text" name="txtTotal" readonly="true"><br><br>
		<input type="button" name="AddValues" value="Add Values" onClick="addValues()">
	</form>
</body>

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingCode Bank > Can someone give some sample code


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway