Note that if you are using a bunch of radio buttons, it will return the value for the selected one (or nothing if none were selected). I.E.:
<form action="file2.asp" method="post" name="Form1">
<input type="radio" name="test1" value="1">
<input type="radio" name="test1" value="2">
<input type="radio" name="test1" value="3">
<input type="radio" name="test1" value="4">
<input type="radio" name="test1" value="5">
<input type="submit" name="btnSubmit" value="Send it">
</form>
and if I select the second radio button, it will return a 2 when I use Request.Form("test1"

. If I don't select any, it will return "" (a blank string). Make sure your radio buttons in a set have the same name if you only want to select one out of a set of them. Harold Blackorby
hblackorby@scoreinteractive.com
St. Louis, MO