Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form Multiple radio buttons

Status
Not open for further replies.

clivehenderson

IS-IT--Management
Nov 2, 2002
66
GB
Hi
I've got form with a radio button (part of a repeat region)Repeat region)
Can anyone tell me how to refer to them in the receiving page. Do they come thru as an array or something?
Any help or pointers appreciated
Many thanks
Clive
 
You have to request it on your landing/executing page.
Code:
Request.Form("FieldName")
or
Code:
Request.QueryString("FieldName")
depending on request method (post or get)
Take care.

:-------------------------------------:
Do the DW »|MostarNetworks|
 
Hi
Thanks for the reply.
My form field is frmVoteOPtion but it is in a repeat region.
so there could be say 10 options set.
I'd like to be able to intrrogate all the posted values.
Regards
Clive

 
Radio buttons can only have 1 value per entry/record.
Perhaps you are after checkboxes?

:-------------------------------------:
Do the DW »|MostarNetworks|
 
Aren't you only receiving the values from one region in the receiving page?

Greg
People demand freedom of speech as a compensation for the freedom of thought which they seldom use. Kierkegaard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top