欢迎光临
我们一直在努力

ASP基础教程之ASP程序对Cookie的处理

建站超值云服务器,限时71元/月

cookie常用来对用户进行识别。
实例:

以下为引用的内容:

<%
dim numvisits
response.cookies("NumVisits").Expires=date+365
numvisits=request.cookies("NumVisits")
if numvisits="" then
   response.cookies("NumVisits")=1
   response.write("Welcome! This is the first time you are visiting this Web page.")
else
   response.cookies("NumVisits")=numvisits+1
   response.write("You have visited this ")
   response.write("Web page " & numvisits)
   if numvisits=1 then

中.国.站.长.站

     response.write " time before!"
   else
     response.write " times before!"
   end if
end if
%>
<html>
<body>
</body>
</html>
中国站长.站

站.长站

什么是Cookie?

Chinaz@com

cookie常用来对用户进行识别。cookie是一种服务器留在用户电脑中的小文件。每当同一台电脑通过浏览器请求页面时,这台电脑就会发送cookie。通过ASP,你可以做到创建并取回cookie的值。 中.国站长站

如何创建cookie? Chinaz_com

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

注意: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的值,并把值显示到了页面上: Www.Chinaz.com

以下为引用的内容:
<%
fname=Request.Cookies("firstname")
response.write("Firstname=" & fname)
%>
Chinaz

输出:

Www~Chinaz~com

Firstname=Alex

中国站.长站

带有键的cookie

Chinaz.com

如果某个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是否拥有键):

中国.站长站

以下为引用的内容:
<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>

Www@Chinaz@com

输出:

Chinaz_com

以下为引用的内容:
firstname=Alex
user:firstname=John
user:lastname=Smith
user:country=Norway
user:age=25
中国站.长站

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

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

1. 向URL添加参数 Www@Chinaz@com

你可以向URL添加参数: 中国站.长.站

以下为引用的内容:
<a href="welcome.asp?fname=John&lname=Smith">
Go to Welcome Page</a>
Chinaz.com

然后在类似于下面这个"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>")
%>

Chinaz.com

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>
Www@Chinaz@com

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

Chinaz^com

以下为引用的内容:

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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP基础教程之ASP程序对Cookie的处理
分享到: 更多 (0)