116 said:
New to scripting in Frontpage. I would like to add a Adv. button, and on
click increment the value of a field by any given number. Little html
knowledge, some VB.
Thanks
David
Well, try JavaScript
<html>
<head>
<title>Advance a Number</title>
</head>
<script type="text/javascript">
function calcform()
{
with (document.form1)
{ number1.value = +number1.value + +number2.value}
/* Note the extra + unary operators. */
}
</script>
<body>
<form name="form1" action="">
Number:<br />
<input type="text" value="10" id="number1" size="10" /><br/>
Enter Number to advance by:<br />
<input type="text" value="1" id="number2" size="10" /><br/>
<input type="button" id="Advance" value="Advance"
onclick="calcform()" >
<input type="reset" id="reset" value=" Reset "/>
</form>
</body>
</html>