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!

group radio buttons

Status
Not open for further replies.

carranz

Technical User
Nov 17, 2006
40
US
I want to pass radio button values to another page.
<input type="radio" name="RadioGroup1" value="Proposer" id="RadioGroup1_0" />
Proposer</label>
<br />
<label>
<input type="radio" name="RadioGroup1" value="Initiator" id="RadioGroup1_1" />
Initiator</label>

how do I do this
do I use "request.form" if so how do I use this?
 
Assuming one of the radio buttons is checked the value of request.form("RadioGroup1") will be either 'Proposer' or 'Initiator'.

Look at the value of request.form to get the values of all your form fields.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top