例如,我在页面加载中放置了一个 cookie,在服务器端 c# 代码的按钮提交上有一些特定的值,我如何获取该 cookie 的值?(asp.net)
问问题
4572 次
2 回答
0
以下是在 C# 中读取 cookie 的方法:
string cookieValue = string.Empty;
if (Request.Cookies["cookiename"] != null)
{
cookieValue = Request.Cookies["cookiename"].Value.ToString();
}
于 2012-06-01T10:21:31.203 回答
-2
阅读饼干:
if (Request.Cookies["NameofCookie"] != null)
{
string value = string.Empty;
if (Request.Cookies["NameofCookie"]["yourkey"] != null)
{ value= Request.Cookies["NameofCookie"]["yourkey"]; }
}
于 2012-06-01T09:37:44.123 回答