Hi people please help me out with this code cant find any person who has done it before.
I want my calculations to be done without posting to another page. On change on the entered amount the results are displayed please help
Asante (Swahili for thanks)
Here is my code
[code=html]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitl ed Document</title>
<style type="text/css">
<!--
.style10 {color: #004200;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: capitalize;
}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="335" height="83" border="0">
<!--DWLayoutTable-->
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Amount Banked </td>
<td colspan="2" valign="top"><i nput name="textfield 310" type="text" class="style10" />
what the client keys in </td>
</tr>
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Charges</td>
<td colspan="2" valign="top"><i nput name="textfield 311" type="text" class="style10" disabled="disab led"/>
rates are to come from the database </td>
</tr>
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Balance available to send </td>
<td colspan="2" valign="top"><i nput name="textfield 312" type="text" class="style10" disabled="disab led" /></td>
</tr>
</table>
</form>
</body>
</html>
[/code]
I want my calculations to be done without posting to another page. On change on the entered amount the results are displayed please help
Asante (Swahili for thanks)
Here is my code
[code=html]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitl ed Document</title>
<style type="text/css">
<!--
.style10 {color: #004200;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: capitalize;
}
-->
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="335" height="83" border="0">
<!--DWLayoutTable-->
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Amount Banked </td>
<td colspan="2" valign="top"><i nput name="textfield 310" type="text" class="style10" />
what the client keys in </td>
</tr>
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Charges</td>
<td colspan="2" valign="top"><i nput name="textfield 311" type="text" class="style10" disabled="disab led"/>
rates are to come from the database </td>
</tr>
<tr>
<td height="20" colspan="2" valign="top" class="style10" >Balance available to send </td>
<td colspan="2" valign="top"><i nput name="textfield 312" type="text" class="style10" disabled="disab led" /></td>
</tr>
</table>
</form>
</body>
</html>
[/code]
Comment