frosty7700
Programmer
I am having a problem that is driving me insane. I have an ASP file with the following code in it:
<INPUT TYPE="text" SIZE="40" NAME="description"></font>
This line is in a table that is within FORM tags. The opening FORM tag is:
<form method="POST" ACTION="test.asp?Type=Image&id=<%=request.querystring("id"%>&name=<%=request.querystring("name"%>">
Test.asp consists of the following:
Dim x
x = request.form("description"
response.write("x = " & x)
However, it (x) always comes up blank. Does anyone have any idea what can cause this? I'll say again, the input field IS between the form tags.
<INPUT TYPE="text" SIZE="40" NAME="description"></font>
This line is in a table that is within FORM tags. The opening FORM tag is:
<form method="POST" ACTION="test.asp?Type=Image&id=<%=request.querystring("id"%>&name=<%=request.querystring("name"%>">
Test.asp consists of the following:
Dim x
x = request.form("description"
response.write("x = " & x)
However, it (x) always comes up blank. Does anyone have any idea what can cause this? I'll say again, the input field IS between the form tags.