62,244
社区成员




HttpCookie cookie = new HttpCookie(videoID, "1");
cookie.Expires = DateTime.Now.AddDays(30);
try
{
HttpContext.Current.Response.Cookies.Set(cookie);
}
catch (Exception ex)
{ }
HttpCookie cookie = HttpContext.Current.Request.Cookies.Get(videoid);
if (cookie == null)
{
actionZone.Visible = true;
dingZone.InnerText = "顶:" + dingNum;
caiZone.InnerText = "踩:" + caiNum;
}