My code for retreiving checkbox values is
<%
dim iCount
for iCount=1 to request.form("menu").count
response.write request.form("menu")(iCount)
next
%>
How would I set these values to the cookie collection?
something like this I think, but it doesn't work
<%
response.cookies("menu") = request.form("menu").count
%>
<%
dim iCount
for iCount=1 to request.form("menu").count
response.write request.form("menu")(iCount)
next
%>
How would I set these values to the cookie collection?
something like this I think, but it doesn't work
<%
response.cookies("menu") = request.form("menu").count
%>