网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP > 正文
ASP Cookie
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/11/25
下载{$ArticleTitle}原创论文样式

什么是 Cookie?

cookie 常用来对用户进行识别。cookie 是一种服务器留在用户电脑中的小文件。每当同一台电脑通过浏览器请求页面时,这台电脑就会发送 cookie。通过 asp,您能够创建并取回 cookie 的值。

如何创建 cookie?

"Response.Cookies" 命令用于创建 cookie。

注意:Response.Cookies 命令必须位于 <html> 标签之前。

在下面的例子中,我们会创建一个名为 "firstname" 的 cookie,并向其赋值 "Alex":

<%Response.Cookies("firstname")="Alex"%>

向 cookie 分配属性也是可以的,比如设置 cookie 的失效时间:

<%Response.Cookies("firstname")="Alex" Response.Cookies("firstname").Expires=#May 10,2002#%>

如何取回 cookie 的值?

"Request.Cookies" 命令用于取回 cookie 的值。

在下面的例子中,我们取回了名为 "firstname" 的 cookie 的值,并把值显示到了页面上:

<%fname=Request.Cookies("firstname")response.write("Firstname=" & fname)%>

输出:

Firstname=Alex

带有键的 cookie

如果一个 cookie 包含多个值的一个集合,我们就可以说 cookie 拥有键(Keys)。

在下面的例子中,我们会创建一个名为 "user" 的 cookie 集。"user" cookie 拥有包含用户信息的键:

<%Response.Cookies("user")("firstname")="John"Response.Cookies("user")("lastname")="Adams"Response.Cookies("user")("country")="UK"Response.Cookies("user")("age")="25"%>

读取所有的 cookie

请阅读下面的代码:

<%Response.Cookies("firstname")="Alex"Response.Cookies("user")("firstname")="John"Response.Cookies("user")("lastname")="Adams"Response.Cookies("user")("country")="UK"Response.Cookies("user")("age")="25"%>

假设您的服务器将所有的这些 cookie 传给了某个用户。

现在,我们需要读取这些 cookie。下面的例子向您展示如何做到这一点(请注意,下面的代码会使用 HasKeys 检查 cookie 是否拥有键):

<html><body><%dim x,y for each x in Request.Cookies  response.write("<p>")  if Request.Cookies(x).HasKeys then    for each y in Request.Cookies(x)      response.write(x & ":" & y & "=" & Request.Cookies(x)(y))      response.write("<br />")    next  else    Response.Write(x & "=" & Request.Cookies(x) & "<br />")  end if  response.write "</p>"next%></body></html>

输出:

firstname=Alexuser:firstname=Johnuser:lastname=Adamsuser:country=UKuser:age=25

如何应对不支持 cookie 的浏览器?

如果您的应用程序需要和不支持 cookie 的浏览器打交道,那么您不得不使用其他的办法在您的应用程序中的页面之间传递信息。这里有两种办法:

1. 向 URL 添加参数

您可以向 URL 添加参数:

<a href="welcome.asp?fname=John&lname=Adams">Go to Welcome Page</a>

然后在类似于下面这个 "welcome.asp" 文件中取回这些值:

<%fname=Request.querystring("fname")lname=Request.querystring("lname")response.write("<p>Hello " & fname & " " & lname & "!</p>")response.write("<p>Welcome to my Web site!</p>")%>

2. 使用表单

您还可以使用表单。当用户点击提交按钮时,表单会把用户输入的数据提交给 "welcome.asp" :

<form method="post" action="welcome.asp">First Name:  <input type="text" name="fname" value="">Last Name: <input type="text" name="lname" value=""><input type="submit" value="Submit"></form>

然后在 "welcome.asp" 文件中取回这些值,就像这样:

<%fname=Request.form("fname")lname=Request.form("lname")response.write("<p>Hello " & fname & " " & lname & "!</p>")response.write("<p>Welcome to my Web site!</p>")%>
(责任编辑:admin)
  • 上一篇资讯: ASP 表单和用户输入
  • 下一篇资讯: ASP Session 对象
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号