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

get Hidden formfields ....

Status
Not open for further replies.

hsviljoen

Programmer
May 26, 2004
73
ZA
I need help with this :

I run a asp function which creates the following:

Do until RS.EOF = TRue
response.write "<Input type='hidden' name='AddressONE" &ind & "' value=' & rsAgencies("A_Adr1") & "'>"
rs.Agencies.movenext
Loop

THEN I want to populate other textboxes with values from the hidden fields....

ddAgencies_OnChange (index)
Document.form.txtAddressLine1.value = document.form.(AddressONE & index).value

End sub

Or something like this - ANY HELP WILL be much appreciated
 
What about populating the fields on the client side with Javascript?

Lee
 
Not very GOOD with jscript , but ive tried both and what I get is that the object document.form.addressONE1.value does not support this property or method....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top