How do you keep the value of an input box displayed after you submit the page to its self..
<SCRIPT LANGUAGE="javascript">
function send()
{document.fu.submit()}
</SCRIPT>
</head>
<body>
<form name=fu method="post">
<input name="test">
<input name="nu" onchange="send()">
<!-- user will input a numeric value. i want to keep the values in the input boxes -->
</form
<SCRIPT LANGUAGE="javascript">
function send()
{document.fu.submit()}
</SCRIPT>
</head>
<body>
<form name=fu method="post">
<input name="test">
<input name="nu" onchange="send()">
<!-- user will input a numeric value. i want to keep the values in the input boxes -->
</form