Hi there
I dont know if you have though of this already but you can use session variables to allow the website to keep hold of the information stored within them accross pages. so you can recall the variable in the next page. maybe this will help
<%
if request.form("register") = "Submit" then
session("msg") = "hello "&request.form("Name")
response.redirect("register.asp")
end if
%>
Then on you next page you can just have <%=session("msg")%> within the HTML wherever you want it to write it. hope the above example is what you are looking for.
Dan