This should be incredibly easy. But, I am having issues with the following.
Why am I not getting the value to write out? Thanks.
<%@ LANGUAGE="VBSCRIPT" %>
<% Response.Buffer = True %>
<html>
<head>
<title>testing</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<FORM name="testing" target="_top" action="testing.asp">
<select name="testing">
<option value="first" selected>first</option>
<option value="second">second</option>
</select>
<input type="submit" name="Submit" value="Submit">
</FORM>
<%
strtesting = request.form("testing")
response.write (strtesting)
%>
</body>
</html>