最新的关于Cookies的操作

So anyways, on to the code. The first thing we need to think of is exactly what data will need to be
stored in the cookie. In this case we will use info submitted by the user via this form:
 
<html>
<body>
<form action="cookie.asp" method="post">
Name:
<input type="text" name="name" size="20">
<input type="submit" value="submit">
</form>
</body>
</html>
Now let's get to the fun part, setting the cookie info. You can use the following code to set the cookie
value on the clients machine:
 
<%
Response.buffer = True
' first we put the data from the form into a variable
name = Request.Form("name")
'then we can set the cookie value using this:
Response.Cookies("name") = name
%>
Ok, so now the cookie is set and we need to retrieve the info. You can use this to retrive the cookie
data:
 
<%
' first we retrive the data and set it to a variable
name = Request.Cookies("name")
' then we post it to the website
Response.Write (name)
%>
And it's that easy. But wait, there is more. There are a few properties that you can set using cookies.
The first property is the Domain property. This is the domain that the cookie originated from. The cookie
can only be read by the domain it originated from. It is set by default to the domain in which it was
created, but you can alter it for your needs. You can set it using this:
 
Response.Cookies("name").Domain = "www.cookiemonster.com"
The next important property is the Expires property. This specifies the date the cookie should expire. If
it is set to a past date then it will expire when the browser is closed.
When setting the date it can be set a couple of ways. You can use the current date and add or subtract

时间: 2024-11-03 02:06:11

最新的关于Cookies的操作的相关文章

AngularJS入门教程之Cookies读写操作示例_AngularJS

本文实例讲述了AngularJS的Cookies读写操作.分享给大家供大家参考,具体如下: 虽然使用JavaScript创建和获取Cookie很简单,AngularJS还是把它作为一个单独的模块进行了封装,模块名为ngCookies,和前面的教程中做法一样,先引入angular-cookies.js: <script type="text/javascript" src="angular-1.3.0.14/angular-cookies.js"><

ASP.NET下对cookies的操作实现代码_实用技巧

复制代码 代码如下: public class BsCookie { //操作的cookie private HttpCookie _theCookie; //对应的cookie的名称 private string _cookieName; private bool _httpOnly = true; /// <summary> /// 是否只允许在服务器端访问,默认只允许在服务端访问 /// </summary> public bool HttpOnly { get { retu

php Cookies操作类

Cookies 操作类 功能: 1.保存,读取,更新,清除cookies数据. 2.可设置前缀. 3.强制超时控制. 4.cookies数据可以是字符串,数组,对象等. Cookies.class.php <?php /** Cookies class 保存,读取,更新,清除cookies数据.可设置前缀.强制超时.数据可以是字符串,数组,对象等. * Date: 2013-12-22 * Author: fdipzone * Ver: 1.0 * * Func: * public set 设置

ASP.NET中利用cookies保持客户端信息

asp.net|cookie|cookies|客户端 我当前所吃的东东都固定为食物,所以一点也不惊讶,这一周的主题为cookies. Cookies用于存储特定用户信息,它提供了Web程序中一种有用的方式.多年以来,JavaScript开发人员已经进行了有关cookie的大量工作.同样,ASP.NET通过System.Web空间名称也提供了cookie的访问.虽然你不应该使用cookie来存储一些敏感性的数据,但是,它们是处理锁细数据的一个极好的选择,比如颜色参数选择或者最后一次访问日期. 传递

浅谈FreeBSD 5.2R常用操作(设置)的改变

概要:这是我使用FreeBSD 5.2 CURRENT以来的一些经验,特别突出了最新5 CURRENT与以往操作不同的地方.希望能对正在使用最新5 CURRENT或将要使用5 CURRENT的朋友有所帮助. cd /usr/ports/shells/bash2 && make install cleanchsh -s /usr/local/bin/bash 2.2.设定中文locale: 在/etc/profle中加入: #file:/etc/profileexport LANG=&quo

黑客59万售卖Windows最新零日漏洞

一位名叫"BuggiCorp"的黑客近日在暗网黑市上兜售一种新的零日漏洞,号称可以利用这个漏洞在Windows所有版本中获取到最高的系统运营权限. 安全公司Trustawave发现,这个漏洞首次出现在俄罗斯的一个暗网黑客论坛上是在五月初,当时售价9.5万美元(折合成人民币约62万),一周前这个帖子再次被更新,价格并将价格改为9万美元(折合成人民币约59万). 据了解,零日漏洞的生意较黑市上售卖的其他产品来说难做一些,因为这其中需要一定的信任才能完成交易,通常通过个人的人脉进行销售,因此

WHMCS新版本升级攻略 获得最新安全补丁

中介交易 http://www.aliyun.com/zixun/aggregation/6858.html">SEO诊断 淘宝客 云主机 技术大厅 主机商在使用WHMCS这样一款主机财务管理软件时,也在关心这款软件的安全和升级信息.接下来笔者简单介绍一下这款软件. WHMCS是一套专为主机业务开发集客户管理.财务和帮助系统于一身的在线交易软件.从注册开通到终止的整个过程,WHMCS都提供了强大的交易自动化模块,帮助主机商全权管理交易. 主机商可以在WHMCS中轻松实现客户信息管理.帮助系

php读取javascript设置的cookies的代码_php技巧

下面给代码: 复制代码 代码如下: <script language="JavaScript" type="text/javascript"> function setmycookie(name) //主要里面的参数 { $name = "thename"; $namev = test.num.value; var date = new Date(); $livetime = 5*24*3600*1000; date.setTime(

PHP购物车类

  PHP购物车类: 因为需求中只记录产品的类型,还有编号..比如食物,,然后什么编号,,这样子.所以没有记录产品的数量..要用的自己改进一下就行了. //setcookie("cart","s:26,45,4,4523423|d:17,7,27,26|e:12,13,123,43|f:34"); //cartAdd('e','167'); //getProInfo('z'); //delProInfo('f','26'); /** * *********** *