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!

Connecting to Access Database and editing/adding records

Status
Not open for further replies.

tyleri

Programmer
Jan 2, 2001
173
US
Does anyone know of a website with step-by-step instructions on how to put together a form that will add entries into an Access database? All I want to do right now is to be able to add entries via an online form, and also edit current entries, also on an online form. I am out of luck w/ the search myself. I'd appreciate any help!!!

 

will show you the basics of database stuff with asp, if that's of any use. As for adding and editing, check out the Jet SQL section of the same site (DevGuru) for UPDATE and INSERT SQL statements and use these in the way it shows for a DELETE operation.

Assuming you understand ASP and VBScript basics, simply build a form with inputs for the values you want to update, post it to a new ASP and use request.form("formItemName") to build up your SQL, then execute it on the ADO connection.

Hope that's at least a decent starting point.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top