Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

ASP Tutorial
ASP Introduction
Run An ASP Web Page
ASP First Script
ASP Programming-VBScript
Variables in ASP
Array in ASP
Operators in ASP
ASP If Statements
ASP Select Statements
ASP Procedures
ASP Forms
ASP Cookies
ASP Session
Application in ASP
ASP #include
ASP Global.asa
ASP Send e-mail
ASP Response
ASP Request
ASP Application
ASP Session
ASP Server
ASP Error
ASP FileSystem
ASP TextStream
ASP Drive
ASP File
ASP Folder
ASP Dictionary
ASP ADO
ASP Ad Rotator
ASP Browser Cap
ASP Content Linking
ASP Content Rotator
ASP Quick Reference
ASP Summary

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


Cookies in ASP
Previous Next

  • To identify a user,a cookie is often used.



  • A cookie is a small text file that is stored on clientmachine that is embeded by the server. Each time the same computer requests a page with a browser, it will send the cookie too.



  • You can both create and retrieve cookie values in ASP.



  • To store information specific to a visitor of your website,ASP Cookies are used.



  • For an extended amount of time this cookie is stored to the user's computer.



  • You can set the expiration date of the cookie for some day in the future it will remain their until that day unless manually deleted by the user




How to Create a Cookie

  • To create cookies,the "Response.Cookies" command is used .

  • BEFORE the <html> tag,the Response.Cookies command must appear

  • We create an welcome cookie in the example below

  • In the example below, we will create a cookie named "CountVisitors" and assign the value numvisits to it

ASP Code:
<%
dim numvisits
response.cookies("CountVisitors").Expires=date+365
numvisits=request.cookies("CountVisitors")
if numvisits="" then
response.cookies("CountVisitors")=1
response.write("Welcome! This is the first time you are visiting this Web page.")
else
response.cookies("CountVisitors")=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>
O/P:

You have visited this page first time.



How to Retrieve a Cookie Value?

  • To retrieve a cookie value,the "Request.Cookies" command is used.

  • In the example below, we retrieve the value of the cookie named "goodname" and display it on a page

ASP Code:
<%
gname=Request.Cookies("goodname")
response.write("Goodname=" & gname)
%>
O/P:

Goodname=Alex



A Cookie with Keys

  • We say that the cookie has Keys if a cookie contains a collection of multiple values.


  • In the example below, we will create a cookie collection named "visitor".


  • The "visitor" cookie has Keys that contains information about a user:

ASP Code:
<%
Response.Cookies("visitor")("firstname")="John"
Response.Cookies("visitor")("lastname")="Smith"
Response.Cookies("visitor")("country")="Norway"
Response.Cookies("visitor")("age")="25"
%>
Read all Cookies
ASP Code:
<%
Response.Cookies("firstname")="Alex"
Response.Cookies("visitor")("firstname")="John"
Response.Cookies("visitor")("lastname")="Smith"
Response.Cookies("visitor")("country")="Norway"
Response.Cookies("visitor")("age")="25"
%>

  • Assume that your server has sent all the cookies above to a user.

  • Now we want to read all the cookies sent to a user.
    The example below shows how to do it (note that the code below checks if a cookie has Keys with the HasKeys property):li

<html>
<body><%
dim x,yfor 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>
O/P:

firstname=Alex

visitor:firstname=John
visitor:lastname=Smith
visitor:country=Norway
visitor:age=25


What if a Browser Does NOT Support Cookies?

  • You will have to use other methods to pass information from one page to another in your application if your application deals with browsers that do not support cookies,

  • There are two methods of doing this:


  •     1.Add parameters to a URL
        2. Use a form

1.Add parameters to a URL

  • You can add parameters to a URL:
  • <a href="welcome.asp?fname=John&lname=Smith">
    Go to Welcome Page</a>

    And retrieve the values in the "welcome.asp" file like this:

    <%
    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.Use a form

  • You can use a form. When the user clicks on the Submit button,the form passes the user input to "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>
    And retrieve the values in the "welcome.asp" file like this:
    <%
    fname=Request.form("fname")
    lname=Request.form("lname")
    response.write("<p>Hello " & fname & " " & lname & "!</p>")
    response.write("<p>Welcome to my Web site!</p>")
    %>


    Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
    • blinkbits
    • BlinkList
    • blogmarks
    • co.mments
    • connotea
    • del.icio.us
    • De.lirio.us
    • digg
    • Fark
    • feedmelinks
    • Furl
    • LinkaGoGo
    • Ma.gnolia
    • NewsVine
    • Netvouz
    • RawSugar
    • Reddit
    • scuttle
    • Shadows
    • Simpy
    • Smarking
    • Spurl
    • TailRank
    • Wists
    • YahooMyWeb

    Previous Next

    Keywords: asp cookies 2005, active server pages, asp cookies response.write, cookie values


    HTML Quizes
    HTML Quiz
    XHTML Quiz
    CSS Quiz
    TCP/IP Quiz
    XML Quizes
    XML Quiz
    XSL Quiz
    XSLT Quiz
    DTD Quiz
    Schema Quiz
    XForms Quiz
    XSL-FO Quiz
    XML DOM Quiz
    XLink Quiz
    XQuery Quiz
    XPath Quiz
    XPointer Quiz
    RDF Quiz
    SOAP Quiz
    WSDL Quiz
    RSS Quiz
    WAP Quiz
    Web Services Quiz
    Browser Scripting Quizes
    JavaScript Quiz
    VBScript Quiz
    AJAX Quiz
    DHTML Quiz
    HTML DOM Quiz
    WMLScript Quiz
    E4X Quiz
    Server Scripting Quizes
    ASP Quiz
    PHP Quiz
    PERL Quiz
    SQL Quiz
    ADO Quiz
    .NET (dotnet) Quizes
    Microsoft.Net Quiz
    XML Web Services Quiz
    ASP.Net Quiz
    .Net Mobile Quiz
    C# : C Sharp Quiz
    ADO.NET Quiz
    VB.NET Quiz
    Multimedia Quizes
    SVG Quiz
    Flash Quiz
    Media Quiz
    SMIL Quiz
    Web Building  Quizes
    Web Browsers Quiz
    Web Hosting Quiz
    W3C Quiz
    Web Building Quiz
    Web Quality Quiz
    Web Semantic Quiz
    Web Careers Quiz
    Java Quizes
    Java Quiz
    JSP Quiz
    Servlets Quiz
    Struts Quiz
    EJB Quiz
    JMS Quiz
    JMX Quiz
    Programming Langauges Quizes
    C Quiz
    C++ Quiz
    Visual Basic Quiz
    Data Structures Using C Quiz
    Soft Skills Quizes
    Communication Skills Quiz
    Time Management Quiz
    Project Management Quiz
    Team Work Quiz
    Leadership Skills Quiz
    Corporate Communication Quiz
    Negotiation Skills Quiz

    Privacy Policy
    Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.