I'm very new to ASP and I'm trying to get a radio button group to work and it doesn't. Here's what I have:
If Request.Form("RadioGroup1")(1) <> "" Then messBody = messBody & "New" & vbCrLf & vbCrLf
If Request.Form("RadioGroup1")(2) <> "" Then messBody = messBody & "Used" & vbCrLf & vbCrLf
If Request.Form("RadioGroup1")(3) <> "" Then messBody = messBody & "Remanufactured" & vbCrLf & vbCrLf
If Request.Form("RadioGroup1")(4) <> "" Then messBody = messBody & "Manufacturing" & vbCrLf & vbCrLf
here is my html button code:
<label>
<input type="radio" checked="checked" value="New"
name="RadioGroup1" />
New</label>
<label> <br />
<input
type="radio" value="Used" name="RadioGroup1" />
Used<br />
</label>
<label>
<input type="radio"
value="Remanufactured" name="RadioGroup1" />
Remanufactured</label>
<label><br />
<input type="radio"
value="Manufacturing" name="RadioGroup1" />
Manufacturing</label>
how that makes sense. thank you