do something like this at the top of your page
if request.form<>"" then
txtAreaText=request.form("txtAreaText")
'request.form("txtAreaText") references the name of the html text area.
end if
<textarea rows="5" columns="30"><%=txtAreaText%></textarea>
infact, do this for all your form fields...