Ok guys I am counting on you here. I need to pass the contents of a test box to an ASP where it can then query a database. I am trying to do this on a button click but having no success - the story so far:
<html>

<head>
<title>Search</title>
</head>

<body>

<form Name="InputForm" ACTION="default.asp?Customer=Customer" method="POST">
<div align="center"><center><p><font face="Tahoma">Please enter customer number for
search&nbsp;&nbsp;&nbsp; </font><input type="text" name="Customer" size="11" maxlength="8"
value>&nbsp;&nbsp;&nbsp; <input type="submit" value="Search" style="font-family: Tahoma"></p>
</center></div>
</form>
</body>
</html>

Should I be doing this in the form tag?
Should the parameter being passed be inside the quotes?
HELP!