Cookies problem on Win2003 Eng + IIS 6.0

C

Claudio

I have a demo app where cookies does not work.
The first page create a cookies. The second read the contet.
If I browse the pages via IE6.0 the pages does not work.
If I browse the pages via FireFox the pages work fine.


************ SetCookies.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>ARXivar Test - Generazione Cookies</title>
</head>

<body>
<form name="Test" action="./SetCookies.asp" >
<strong>Pagina di generazione Cookies</strong><br><br>
<input name="GeneraCookies" type="submit" value="Genera Cookies »">
</form>
<%
If Request("GeneraCookies") <> "" Then
Response.Cookies("Nome").Path = "/"
Response.Cookies("Nome") = "Claudio"
Response.Cookies("Nome").Expires = DateAdd("h", 4, now) 'Date + 1

Response.Cookies("Cognome").Path = "/"
Response.Cookies("Cognome") = "Maccari"
Response.Cookies("Cognome").Expires = DateAdd("h", 4, now) 'Date + 1

Response.Write("Cookies generati")
Response.Write("<br><br><a href='./GetCookies.asp'>Clicca qui per leggere
il contenuto dei cookies</a>")
End If
%>
</body>
</html>


************ GetCookies.asp<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>ARXivar Test - Lettura Cookies</title>
</head>

<body>
<strong>Contenuto dei cookies:</strong><br><br>
Nome: <%=Request.Cookies("Nome")%>
<br>
Cognome: <%=Request.Cookies("Cognome")%>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top