日期:2014-05-17 浏览次数:20460 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace PAB.Web
{
public static class CookieUtil
{
public static string GetCookieValue (string cookieName)
{
string cookieVal = String.Empty;
cookieVal = HttpContext.Current.Request.Cookies[cookieName].Value;
return cookieVal;
}
public static void CreateCookie (string cookieName, string value, int? expirationDays)
{
HttpCookie Cookie = new HttpCookie(cookieName, value);
if ( expirationDays.HasValue )
Cookie.Expires = DateTime.Now.AddDays(expirationDays.Value );
HttpContext.Current.Response.Cookies.Add(Cookie);
}
public static void DeleteCookie (string cookieName)
{
HttpCookie Cookie = HttpContext.Current.Request.Cookies[cookieName];
if (Cookie != null)
{
Cookie.Expires = DateTime.Now.AddDays(-2);
HttpContext.Current.Response.Cookies.Add(Cookie);
}
}
public static bool CookieExists(string cookieName)
{
bool exists = false;
HttpCookie cookie = HttpContext.Current.Request.Cookies[cookieName];
if (cookie != null)
exists