hi everyone,
The following isn't working?
What I'm trying to do is display on screen one of the option in the jump menu.
If I changed the this line
getstuff = request.form("option1"
TO
getstuff = request.form("ss"
it'll display the input field's stuff but jump menu no????
-----------------------
<HTML>
<form method="post" action="aspform.asp">
<input type="text" name="ss"><BR>
<select name="select11">
<option selected>select option</option>
<option value=option1>michael 1</option>
<option value=option2>michael 2</option>
</select>
</form>
<%
dim getstuff
getstuff = request.form("option1"
response.write getstuff
%>
</HTML>
The following isn't working?
What I'm trying to do is display on screen one of the option in the jump menu.
If I changed the this line
getstuff = request.form("option1"
getstuff = request.form("ss"
it'll display the input field's stuff but jump menu no????
-----------------------
<HTML>
<form method="post" action="aspform.asp">
<input type="text" name="ss"><BR>
<select name="select11">
<option selected>select option</option>
<option value=option1>michael 1</option>
<option value=option2>michael 2</option>
</select>
</form>
<%
dim getstuff
getstuff = request.form("option1"
response.write getstuff
%>
</HTML>