It sound like you want to use session variables rather than cookies.
here's the cookie stuff anyway
Code:
<html>
<head>
</head>
<BODY>
<form name="form1" method="post" action="cookie.asp">
<b>First Name:</b> <input name="FirstName" size="10" maxlength="10"><BR>
<b>Last Name:</b> <input name="LastName" size="10" maxlength="10"><BR>
<input type="submit" value="ok">
</form>
</BODY>
</html>
cookie.asp
Code:
<%@ Language=VBScript %>
<%Response.Cookies("ReclaimAmerica").Expires = Date+365
Response.Cookies("ReclaimAmerica").Secure = FALSE
Response.Cookies("ReclaimAmerica")("FirstName") = request("FirstName")
Response.Cookies("ReclaimAmerica")("LastName") = request("LastName")
'Response.Cookies("ReclaimAmerica")("EmailAddress") = Session("NewUserEmail")
%>