.net 添加Cookie的4种方法

第一种添加Cookie方法

        HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Values["a"] = "a";
        myCookie.Values[""] = "b";
        myCookie.Expires.AddDays(1);
        Response.Cookies.Add(myCookie);
        //Response.AppendCookie(mycookie);这个也可以添加    

第一种获取Cookie方法

 Response.Write(Request.Cookies["userrole"].Values["a"].ToString());

第二种添加Cookie方法

      HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Values["a"] = "a";
        myCookie.Values["b"] = "b";
        myCookie.Expires.AddDays(1);
        Response.Cookies.Add(myCookie);

第二种读取Cookie方法

        HttpCookie cookie = Request.Cookies["userrole"];
        Response.Write(cookie.Values["a"].ToString());
        Response.Write(cookie.Values["b"].ToString());

第三种添加Cookie方法

        HttpCookie myCookie = new HttpCookie("userrole");
        myCookie.Value = "a";
        Response.Cookies.Add(myCookie);

第三种读取Cookie方法

   Response.Write(Request.Cookies["userrole"].Value);

第四种添加Cookie方法

        HttpContext.Current.Response.Cookies.Add(new HttpCookie("userrole", "超级管理员"));
        Response.Cookies["userrole"].Value = "超级管理员";
        HttpCookie cookie = Request.Cookies["userrole"];
        Response.Write(cookie.Value);

第四种读取Cookie方法

        Response.Write(Request.Cookies["userrole"].Value);
时间: 2024-11-10 13:43:53

.net 添加Cookie的4种方法的相关文章

Android在布局中动态添加view的两种方法

一.说明 添加视图文件的时候有两种方式:1.通过在xml文件定义layout:2.java代码编写 二.前言说明 1.构造xml文件 2.LayoutInflater 提到addview,首先要了解一下LayoutInflater类.这个类最主要的功能就是实现将xml表述的layout转化为View的功能.为了便于理解,我们可以将它与findViewById()作一比较,二者都是实例化某一对象,不同的是findViewById()是找xml布局文件下的具体widget控件实例化,而LayoutI

给Repeater控件里添加序号的5种方法

.net是目前非常热门的一种程序编译语言,在.net培训中的众多知识点中,给Repeater控件里添加序号的5种方法是非常重要的一个.下面就由达内的老师为大家介绍一下这方面的内容. Repeater是我们经常用的一个显示数据集的数据控件,经常我们希望在数据前显示数据的序号,那么我们该怎么为Repeater控件添加序号呢?下面编辑为大家介绍几种常用的为Repeater控件添加序号的方法: 方法一:利用Container.ItemIndex属性,代码如下: <Itemtemplate ><%

delphi TreeView 从数据库添加节点的四种方法

方法一:delphi中递归算法构建treeView 过程:通过读取数据库中table1的数据,来构建一颗树.table1有两个字段:ID,preID,即当前结点标志和父结点标志.所以整个树的表示为父母表示法.本递归算法不难写,但是要注意:程序内部的变量都应使用局部变量!比如当Query是外部变量(函数外定义或者直接通过控件拖拽得来)时就会得到错误的结果.代码如下: unit Unit1; interface uses  Windows, Messages, SysUtils, Variants,

添加Labels的两种方法

private void AddLabel(IFeatureLayer pLayer,string fieldname,ITextSymbol Symbol) { container.DeleteAllElements(); IFeatureClass pClass = pLayer.FeatureClass; IFields pFields = pClass.Fields; int index = pFields.FindField(fieldname); ITextElement pText

view添加毛玻璃效果两种方法

第一种方法: UIBlurEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]; UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:effect]; effectView.alpha = 0.9; effectView.frame = CGRectMake(0, 0, bgImageView.frame.si

ios动态添加属性的几种方法

http://blog.csdn.net/shengyumojian/article/details/44919695 在ios运行过程中,有几种方式能够动态的添加属性. 1-通过runtime动态关联对象 主要用到了objc_setAssociatedObject,objc_getAssociatedObject以及objc_removeAssociatedObjects [objc] view plain copy //在目标target上添加关联对象,属性名propertyname(也能用

关于MySQL中添加数据的两种方法

下面介绍两种执行SQL命令的方法,并作出相应地总结,第一种介绍一种常规用法,下面进行做简要地分析,首先我们需要执行打开数据库操作首先创建一个MySqlConnection对象,在其构造函数中传入一个连接字符串,然后执行Open操作打开数据库,在正确打开数据库之后我们才能进行相关的动作,在ExecuteSQL这个函数中, 我们执行MySqlCommand myCmd = new MySqlCommand(CmdString, conn),从而创建MySqlCommand对象,其中传入的两个参数分别

Android中动态添加View的两种方法

一.使用xml的方式: 1.LayoutInflater: 这个类可以把xml表述的Layout解析为View,从而可以使addView()方法添加View. 2.LayoutInflater与findViewById的区别: 两者都是实例化某一个对象,不同的是findViewById是通过找xml布局文件下的一个具体的widget控件进行实例化,而LayoutInflater是找res/layout 下的xml布局文件来实例化的. 3.使用方法: LayoutInflater inflater

使用CSS为图片添加边框的几种方法

css的应用十分广泛,即便用在图片的效果中也是方法多样,本文下面就介绍五种为图片添加特殊效果边框的CSS写法阴影效果 通过使用带有一些padding之的背景图来添加阴影效果. HTML <img class=”shadow” src=”sample.jpg” alt=”" /> CSS img.shadow { background: url(shadow-1000×1000.gif) no-repeat right bottom; padding: 5px 10px 10px 5p