Forum: ASP.NET Feb 3rd, 2005 |
| Replies: 1 Views: 4,530 Re: Radiobuttonlist control - help! I believe I got it. I used the code below and it worked:
--------
If q4.SelectedValue <> "" Then
q4Str = q4.SelectedValue
Else
q4Str = "NA"
End If
-------- |
Forum: ASP.NET Feb 3rd, 2005 |
| Replies: 1 Views: 4,530 Radiobuttonlist control - help! I have a web form with some radiobuttonlist controls on it. My form will not submit unless I have selected at least one item on each radiobuttonlist controls.
Does anybody know how to set it so that... |