Sort of,
load your form input into variables
insert them into the database
redirect to another page and send the variables in the querystring or
display the variables on the same page or whatever you want.
ie
strName = Request.Form("Name")
strSql = "INSERT INTO Employee SET Name = '" & strName & "'"
objConn.open(connectionstring)
objConn.Execute(strSql)
Response.redirect "thanks.asp?name=" & strName
> Is there a way in ASP I can pass Data to an access database and pass the
> parameters to another page at the same time?
>
> Thanks in Advance
>