cookies对象的基本使用,COOKIES对象的属性

COOKIES对象的属性

属性            含义

all               传回所有的COOKIES

allkeys       传回所有的Cookies变量的名称到一个字符串型的数组

Count         传回Cookies变量的数量

Add             添加一个新的Cookie

Clear          清除所有的Cookie

Get              取得Cookies变量名称或者是索引值

remove       移去cookie

Set               更新Cookie的值

Expires       设定Cookie的时间,默认值为1000分钟。若值为0,则删除该Cookie

Name         取得Cookie变量的名称

Value          设定Cookie变量的值

 

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        int i;
        Response.Cookies["cookies1"].Value="Microsoft";
        Response.Cookies["cookies2"].Value="Visual Studio.NET2005";
        for (i = 0; i < Request.Cookies.Count;i++ )
        {
            Response.Write("变量名称:"+Request.Cookies.Get(i).Name+"<br>变量内容:"+Request.Cookies.Get(i).Value+"<br>");
        }
        Response.Cookies.Clear();
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值