当前位置:  编程技术>.net/c#/asp.net

C#操作cookie的例子(读取、删除、写入)

    来源: 互联网  发布时间:2014-08-30

    本文导语:  代码如下,具体实现看注释。   代码示例: #region Cookie处理  ///   /// 写cookie值  ///   /// 名称  /// 值  public static void WriteCookie(string strName, string strValue)  {        HttpCookie cookie = HttpContext.Current.Request.Cookies[strName...

代码如下,具体实现看注释。
 

代码示例:

#region Cookie处理 
///  
/// 写cookie值 
///  
/// 名称 
/// 值 
public static void WriteCookie(string strName, string strValue) 

      HttpCookie cookie = HttpContext.Current.Request.Cookies[strName]; 
      if (cookie == null) 
      { 
          cookie = new HttpCookie(strName); 
      } 
      cookie.Value = strValue; 
      HttpContext.Current.Response.AppendCookie(cookie); 
     
  } 
     
///  
/// 写cookie值 
///   www.
/// 名称 
/// 索引 
/// 值 
public static void WriteCookie(string strName, string key, string strValue) 

      HttpCookie cookie = HttpContext.Current.Request.Cookies[strName]; 
      if (cookie == null) 
      { 
          cookie = new HttpCookie(strName); 
      } 
      cookie[key] = strValue; 
      HttpContext.Current.Response.AppendCookie(cookie); 
     
  } 

///  
/// 写cookie值 
///  
/// 名称 
/// 值 
/// 过期时间(分钟) 
public static void WriteCookie(string strName, string strValue, int expires) 

      HttpCookie cookie = HttpContext.Current.Request.Cookies[strName]; 
      if (cookie == null) 
      { 
          cookie = new HttpCookie(strName); 
      } 
      cookie.Value = strValue; 
      cookie.Expires = DateTime.Now.AddMinutes(expires); 
      HttpContext.Current.Response.AppendCookie(cookie); 
     
  } 
     
///  
/// 写cookie值 
///  
/// 名称 
/// 值 
/// 过期时间(分钟) 
/// cookie存在的域范围 
public static void WriteCookie(string strName, string strValue, int expires, string domain) 

      HttpCookie cookie = HttpContext.Current.Request.Cookies[strName]; 
      if (cookie == null) 
      { 
          cookie = new HttpCookie(strName); 
      } 
      cookie.Value = strValue; 
      cookie.Expires = DateTime.Now.AddMinutes(expires); 
      cookie.Domain = domain; 
     
      HttpContext.Current.Response.AppendCookie(cookie); 
      
       
  } 
     
  ///  
  /// 读cookie值 
  ///  
  /// 名称 
  /// cookie值 
  public static string GetCookie(string strName) 
  { 
      if (HttpContext.Current.Request.Cookies != null && HttpContext.Current.Request.Cookies[strName] != null) 
      { 
          return HttpContext.Current.Request.Cookies[strName].Value.ToString(); 
      } 
     
      return ""; 
  } 
  ///  
  /// 读cookie值 
  ///  
  /// 名称 
  /// cookie值 
  public static string GetCookie(string strName, string key) 
  { 
      if (HttpContext.Current.Request.Cookies != null && HttpContext.Current.Request.Cookies[strName] != null && HttpContext.Current.Request.Cookies[strName][key] != null) 
      { 
          return HttpContext.Current.Request.Cookies[strName][key].ToString(); 
      } 
     
      return ""; 
  } 
     
  ///  
  /// 删除Cookies 
  ///  
  /// 名称 
  /// 域名 
  ///  
  public static void DelCookie(string strName, string domain) 
  { 
      HttpCookie cookie = new HttpCookie(strName); 
      WriteCookie(strName, "", -60, domain); 
  } 
     
  ///  
  /// 删除Cookies 
  ///  
  /// 名称 
  ///  
  public static void DelCookie(string strName) 
  { 
      HttpCookie cookie = new HttpCookie(strName); 
      WriteCookie(strName, "", -60); 
  } 
  #endregion 


    
 
 

您可能感兴趣的文章:

  • c#对象中两种copy操作:深拷贝(Deep Copy)与浅拷贝(Shallow Copy)
  • c#的时间日期操作示例分享(c#获取当前日期)
  • .NET下 c#通过COM组件操作并导出Excel实例代码
  • C#操作txt文件,进行清空添加操作的小例子
  • C#实现装箱与拆箱操作简单实例
  • 浅谈C#互操作的内存溢出问题
  • C# 中的??操作符浅谈
  • c#剪切板操作的简单实例
  • c# 调用Surfer软件,添加引用的具体操作方法
  • c#异步task示例分享(异步操作)
  • c#下注册表操作的一个小细节
  • C#操作CLOB大对象的代码一例
  • c#判断操作系统位数实例代码
  • 一些关于c#与Sql的时间的操作
  • c#判断操作系统位数的示例分享
  • C#中的位操作小结
  • C# 操作符之三元操作符浅析
  • C# Dictionary操作范例(入门新手参考)
  • C#的WebBrowser操作frame实例解析
  • C# Winform 操作 INI 配置文件的实现代码
  • C#程序最小化到托盘图标操作步骤与实现代码
  • applet怎样进行文件写入读出操作
  • 因为mmap函数返回值是void*类型,是否可以将其强制转换成char*类型,按字符串操作,然后将修改重新写入内存映像即可????
  • jxl操作excel写入数据不覆盖原有数据示例
  • jsp文件操作之写入篇
  • java的io操作(将字符串写入到txt文件中)
  • android读写sd卡操作写入数据读取数据示例
  • php操作XML、读取数据和写入数据的实现代码
  • C#通过XML节点属性/属性值读取写入XML操作代码实例
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java操作excel2007文档介绍及代码例子
  • 谁有操作系统PV操作的例子???谁有操作系统PV操作的例子???谢谢!!
  • jquery链式操作、链式写法的小例子
  • >>>>>>>>>>>>>>>急:高分求struts操作数据库表的例子
  • JQuery 文本框操作的4个小例子
  • jquery操作单选框radio的例子
  • asp.net操作cookie的例子
  • jquery中select操作的例子
  • JQuery操作class属性实现按钮开关效果的例子
  • 我是菜鸟,想要个oracle数据库操作 的例子
  • Python操作json数据的一个简单例子
  • java里面那些类(包)是负责对XML操作的,谁能给我讲解一下,或者指点在那里能找到相关资料?最好给一个例子。
  • c# xml API操作的小例子
  • sql字段操作的一些例子
  • Jquery操作html标签及动态添加验证的例子
  • c# 多线程操作progressBar进度条控件的例子
  • 那位大哥有关于file 和dialog操作的例子?
  • Jquery操作radio的小例子
  • .NET程序页面中,操作并输入cmd命令的小例子
  • sql server 日期操作的一些例子
  • 誰能給個對數據庫操作的bean例子﹗分不斷送上﹗
  • C++ Stacks(堆栈) 成员 操作:比较和分配堆栈
  • 已安装了Windows操作系统,还想安装Linux。却还想在开机选择操作系统时由Windows引导,请问如何操作。在线等待
  • C++ Strings(字符串) 成员 Operators:操作符,用于字符串比较和赋值
  • 请问LINUX操作系统是怎样对外围设备进行操作的
  • C++ I/O 成员 flags():操作flags
  • 什么样的操作最耗费服务器的IO操作?
  • C++ I/O 成员 width():操作域宽度
  • 无操作系统下对U盘的操作
  • Xcode介绍及创建工程和工程依赖操作步骤
  • 请问命令行操作下怎么改Linux操作系统的日期和时间?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3