Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting cookies to work

Status
Not open for further replies.

mmarkym

Programmer
Mar 23, 2002
54
US
I don't know why this code brings up a blank screen.....

<%

dim iCount
dim strCookie

for iCount=1 to request.form("menu").count


response.cookies("strCookie") = request.form("menu")(iCount)


next

for each x in request.cookies("strCookie")


if request.cookies("strcookie").HasKeys then

response.write x

end if

next

%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top