I am trying to pass input fields from one page to another. Here is an example that I am getting "name" in the t1.htm page - and trying to pass to t2.htm page.
T1.htm is
<body>
<form method="POST" action="t2.htm">
<p><input type="text" name="name" size="20"></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
What is the code in t2.htm to retrieve the "name" input text? FYI - I am using Front Page if that makes a difference.
Thanks for any help!! Bear in mind that I am new at this!!
I've tried using GET for the action in t2.htm with no success.
T1.htm is
<body>
<form method="POST" action="t2.htm">
<p><input type="text" name="name" size="20"></p>
<p><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
</body>
What is the code in t2.htm to retrieve the "name" input text? FYI - I am using Front Page if that makes a difference.
Thanks for any help!! Bear in mind that I am new at this!!
I've tried using GET for the action in t2.htm with no success.