I have a simple asp page that doesn't seem to pass the contents of my text
box. It does show the variable name, but no value.
*************** *************** *************** *
<%@LANGUAGE="VB SCRIPT" CODEPAGE="1252" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitl ed Document</title>
</head>
<body>
<form method="GET" action="atestby tfs.asp">
<table width="90%" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="50%"><di v align="right">R eferral ID: </div></td>
<td> <inpu t type="text" id="referralID" ></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit"> </td>
</tr>
</table>
</form>
</body>
</html>
*************** *************** *************** *************** **
After I put something in the box and press the submit button, I get the
following when it calls a page:
No value.
What am I missing?
Thanks,
Tom.
box. It does show the variable name, but no value.
*************** *************** *************** *
<%@LANGUAGE="VB SCRIPT" CODEPAGE="1252" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitl ed Document</title>
</head>
<body>
<form method="GET" action="atestby tfs.asp">
<table width="90%" border="1" cellspacing="0" cellpadding="0" >
<tr>
<td width="50%"><di v align="right">R eferral ID: </div></td>
<td> <inpu t type="text" id="referralID" ></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Submit"> </td>
</tr>
</table>
</form>
</body>
</html>
*************** *************** *************** *************** **
After I put something in the box and press the submit button, I get the
following when it calls a page:
No value.
What am I missing?
Thanks,
Tom.
Comment