hi,
i have an asp page that is populated by reading the data from an access database. the page is displayed with data in the fields (full_name, facility, oid). i populate the values for the fields using this syntax:
<INPUT type="text" NAME="full_name_box" size=30 value="<%=full_name%>">
at the bottom of the page are different buttons (update, delete, add, search)
when i push the update button, i have modified the content of full_name. i would like to link to an asp page that does the update to database with all the values in the form. i got an answer for onclick that i had to specify the values for, but those values came from original database values, not the modified values.
any suggestions?
Start Free Trial