Depends on the method attribute of the form. If its GET, then you need to look at
Code:
Request.QueryString("whateverTheFieldIsCalled")
to get its value.
If the form is set to POST, the data will be in
Code:
Request.Form("whateverTheFieldIsCalled")
To write out data just use
Code:
Response.Write Request.Form("whateverTheFieldIsCalled")
As for storing the data, the usual place is a database for which you use ADO.
That's about all I can give you without more detail of what you want to do.
hth
Phil