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
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