ASP Cookies

asp cookies

cookie 常用于识别用户。

examples

尝试一下 - 实例

welcome cookie
本例演示如何创建 welcome cookie。

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,2012#
%>

如何取回 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")="smith"
response.cookies("user")("country")="norway"
response.cookies("user")("age")="25"
%>

读取所有的 cookie

请阅读下面的代码:

<%
response.cookies("firstname")="alex"
response.cookies("user")("firstname")="john"
response.cookies("user")("lastname")="smith"
response.cookies("user")("country")="norway"
response.cookies("user")("age")="25"
%>

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

现在,我们需要读取这些传给某个用户的所有的 cookie。下面的实例向您演示了如何做到这一点(请注意,下面的代码通过 haskeys 属性检查 cookie 是否带有键):

<!doctype html>
<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=alex

user:firstname=john
user:lastname=smith
user:country=norway
user:age=25

如果浏览器不支持 cookie 该怎么办?

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

1. 向 url 添加参数

您可以向 url 添加参数:

<a href="welcome.asp?fname=john&lname=smith">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. 使用表单

您可以使用表单。当用户点击 submit 按钮时,表单会把用户输入传给 "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>")
%>

相关文章