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 Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Request.Form problem...?!?

Status
Not open for further replies.

snowboardr

Programmer
Feb 22, 2002
1,401
PH
How can I Request a form because this doesn't work?

Request.Form("q" & rCount)


rCount = rCount + 1 is at the bottom of my loop ..

www.vzio.com
star.gif
if I helped. [wink]
 
request.form(&quot;<name_of_control_on_your_form>&quot;)

e.g.

request.form(&quot;txtLName&quot;) 'retrieves the last name field
 
yes, but the rCount defines which form I want to access, because there are multiple radios on the page..
www.vzio.com
star.gif
if I helped. [wink]
 
OK got it to work, Request.Form(&quot;q&quot; & rCount) was right, but I messed up on the form name, dumb mistake..


www.vzio.com
star.gif
if I helped. [wink]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top