Here you go gcastillo,
Here's a sample of a page I have on my intranet. The following code is from my post page (after user
submits page).
***************** This inserts into my table **************
<%
SQL="INSERT INTO input_table (name, date, department, suggestion) Values ("&_
"'"& request.form("name"

& "', " &_
"'"& request.form("date1"

& "', " &_
"'"& request.form("department"

& "', " &_
"'"& request.form("suggestion"

& "')"
Dim myRS
set myRS=server.createobject("ADODB.recordset"

myRS.open SQL, "dsn=Suggestions"
%>
***************** This inserts into my table **************
****************** and sets my Record Set *****************
Then on this table withing the same page, I post only what I want to see from the user input.
Code:
<table>
<tr>
<td width="36%" align="right"><font color="#000080" size="3">Name:</font></td>
<td width="64%"><%=request.form("Name")%></td>
</tr>
<tr>
<td width="36%" align="right"><font color="#000080" size="3">Date
Suggested:</font></td>
<td width="64%"><%=request.form("Date1")%></td>
</tr>
<tr>
</table>
QUOTE OF THE DAY
I will prepare, and some day my chance will come.
Abraham Lincoln
<%
Jr_Clown

)
%>