62,271
社区成员
发帖
与我相关
我的任务
分享
protected string getCookie(string cookiename)
{
string strcookievalue = "";
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookiename];
if (cookie != null)
{
strcookievalue = cookie.Value;
}
return strcookievalue ;
}