I'm not up on the ASP object model, but scripts that allow users to insert and update database records almost always use an HTML form page to submit the user data. The server script gets the user data from query string or POST variables (available via ASP's Request object, I believe), opens a database connection, and uses the SQL INSERT or UPDATE statement in a query to store the data.
|