If you can get the stuff out of the database to display on a page, you are just about there...in stead of just displaying to a page, write it into a form...suppose a record has fields f1, f2, and f3...you get those fields for a record...
in the form you can do this:
<form action="somePostPage.asp" method=post>
<input type=text name=f1field value='<% = ors("f1"

%>'>
<input type=text name=f2field value='<% = ors("f2"

%>'>
<textarea name=f3field><% = ors("f3"

%></textarea>
<input type=submit value="Click">
</form>
This will then, after submitting go to another page. On that second page, do your update for the fields to the database...That's all you need to do. Pay special attention to how the textarea is set up. There is no value attribute, and I write the data to be in between the open and closing textarea tags.
hope this gives you what you need.
Mike