我无法让Google Chromium OS从 ASP.NET 4.5 页面设置/读取 cookie。
我在 Windows 8 上使用 IIS 8。
这是一个简单的 Web 表单示例:
<%@ Page Language="VB" %>
<!DOCTYPE html>
<script runat="server">
Protected Sub Page_Load(sender As Object, e As EventArgs)
If Not IsPostBack Then
Dim cookie As New HttpCookie("TestCookie")
cookie.Expires = Date.UtcNow.AddDays(1)
cookie.Value = "Hello from Cookie!"
Response.Cookies.Add(cookie)
End If
End Sub
Protected Sub Button1_Click(sender As Object, e As EventArgs)
Dim cookie As HttpCookie = Request.Cookies("TestCookie")
If Not IsNothing(cookie) Then
Label1.Text = cookie.Value
Else
Label1.Text = "Cookie not found!"
End If
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
当我单击按钮读取 cookie 时 - 它总是返回 Nothing(未找到 cookie)
我检查了我的 cookie 设置在 Chromium 中启用。
当我检查 Chromium 设置以查看正在存储的 cookie 时,它仅列出了我网站域中的ASPNET 会话 ID cookie,因此它正在存储会话 cookie。
有没有其他人遇到过这个问题?
我在 Windows 8 上使用 IIS 8。