Yes, but since you are displaying it again, you may want to use the form itself to display the items.
<%
set objCn = server.createObject("adodb.connection"

set objRS = server.createObject("adodb.recordset"

objCn.Open
yourConnectionString
if request.servervariables("HTTP_METHOD"

= "post" then
uName = request("uName"

uPhone = request("uPhone"

strSQL = "INSERT INTO myTable (uName, uPhone) "&_
"VALUES ('" & uName & "','" & uPhone & "')"
objCN.execute(strSQL)
end if
'since you already have the info, you don't need to query the db to get it and display it
objCn.close
set objCn = nothing
set objRs = nothing
%>
<form method=post action="thisPage.asp">
<input name="uName" value="<%=uName%>">
<input name="uPhone" value="<%=uPhone%>">
<input type=submit>
</form> Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048
mikewolf@tst-us.com