Create and retrieve cookies
Published on 12/15/2008 by Dotnetindex|
Vote this tutorial:
|
More articles in ASP
ASP is very powerful while managing cookies. It's so easy to create a cookie. You may use response object and cookie property to create it. Again request object used to retrieve cookie. Cookies must be written before header sent to client by server. This means you should write and send cookie befre any HTML opening tag.
Example:
Create cookie:
strCookieName = "Acookie"
strCookieValue = "I am a cookie"
'let's create it now
response.cookie(strCookieName) = strCookieValue
Retrive value from cookie
strValueFromCookie = request.cookie(strCookieName)
That's all. A cookie dies noamlly after closing browser. You may edit a cookie lifetime by passing a value to expires property.
Response.Cookies(strCookieName).Expires=date()+10
This cookie will be avalaible for 10 days.
Comments:
no comments submitted
Latest Posts
- Create and retrieve cookies
- Easy Error Handling in C#
- Filtering results from database
- Filling Data into Select List
- Working with Array Remove An Item
- Custom Paging in ASP Fast And Easy
- Display Top N records from MS Access
- Using GetRows To Get All Records From Table
- VBScript Functions The Len Function
- Free User Registration Form
- Copying Folders using File System Object
- ArrayList object usage with example
- Using SUM Function in An SQL Statement
- Compacting an Access database from ASP code
- Database Driven Login Script
- Methods of Session Object
- Simple XMLRSS Parser Part-II
- Selecting random record from database
- Image downloading from remote servers in ASP
- How to Encrypt String Using MD5


