1

我正在使用下面的代码段在 asp 中设置一个 cookie。当我在萤火虫中查看我的 cookie 时,我看到了 cookie,但是值本身是空白的。
我知道该respondArray[1]变量是一个字符串,但它只是没有保存到 cookie 中。

 System.Web.HttpCookie cookie = new System.Web.HttpCookie("secretKey", respondArray[1]);
 Response.Cookies.Add(cookie);

任何帮助深表感谢。

4

1 回答 1

1

试试这个可能对你有帮助

 HttpCookie userCookie = new HttpCookie("UserInfo");  
        userCookie["Country"] = "Italy";  
        userCookie["City"] = "Rome";  
        userCookie["Name"] = "Jones";  


if (cookie != null)   
        {  
            string country = cookie["Country"];  
            string city = cookie["City"];  
            string name = cookie["Name"];  
            Label2.Text = "Cookie Found and read<br/>";  
            Label2.Text += "Name: " + name;  
            Label2.Text += "<br />Country: " + country;  
            Label2.Text += "<br />City: " + city;  
        } 
于 2013-04-04T11:12:07.803 回答