can't get data from form into pop up this way. want to stay in vbs if possible....clues?
<form method="POST" action="new_page_1.asp">
<p>
<select size="1" name="D1">
<option>red</option>
<option>green</option>
</select><input type="submit" value="Submit" name="B1"></p>
<SCRIPT Language = "vbscript">
Sub B1_OnClick()
Window.open "new_page_1.asp","window","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=403,height=250,top=200,left=200"
End Sub
</SCRIPT>
</form>
<%
thing=request("d1"
response.write thing
%>
"Where's the Ka-Boom? There's supposed to be an Earth-shattering Ka-Boom!"
Marvin the Martian
<form method="POST" action="new_page_1.asp">
<p>
<select size="1" name="D1">
<option>red</option>
<option>green</option>
</select><input type="submit" value="Submit" name="B1"></p>
<SCRIPT Language = "vbscript">
Sub B1_OnClick()
Window.open "new_page_1.asp","window","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=403,height=250,top=200,left=200"
End Sub
</SCRIPT>
</form>
<%
thing=request("d1"
response.write thing
%>
"Where's the Ka-Boom? There's supposed to be an Earth-shattering Ka-Boom!"
Marvin the Martian