Advertisment
You may have come across a situation where you have two ASP websites, possibly on different servers, and you wish to pass a visitor from site 1 to...
Sessions and cookies can be used to persist visitor information. This article shows us how to maintain session state with ASP using a combination...
This tutorial shows how to keep information from the user in your server (Session method) and how to share information between users (Application...
A basic information on using Cookies in ASP. An access counter is used as an example.
Session variables can store user-specific information for you. This tutorial explain how to configure your server and how they work (and when they...
This article will explain the problems faced with detecting cookies in ASP and address them one by one. You will then be presented with a cookie...
Cookies are not transferrable across domains; the only domain that can access the cookie is the domain that created it. This article describes...
Cookies are a very useful; they can store usernames/password, preferences, last visits, etc. This short explains how to store information a user...
Cookies can be used to remember things about a user when they come back to your site. Cookies expire after a certain amount of time which you can...
One of the problems on the net is that you seldom know whom your dealing with. Is it a newbie on your site, a regular guest or your boss?...
Cookies can be a good method for passing data between pages and especially for retaining data between sessions. Today, it's pretty safe to...
Cookies enable you to write text directly to a users computer. This can be used to easily recognize if a user has been to your site before or used...
Learn how to create and retrieve cookies in this simple tutorial.
This tutorial will help you understand: How ASP server uses cookies to pass an ID with the browser to link multiple HTTP requests together. How...
This tutorial will help you understand: What is a cookie? Sending and receiving cookies. Cookie properties and itemized values. Some other...
If the user's browser doesn't support cookie or has it turned off, will the ASP's session work properly? The answer is no. This...
In this tutorial, we will take a look at Application Object. When you've used Application Object, all ASP pages can store and retrieve...
To create cookies in ASP is so easy. After creating cookies, you will store it in client's visitors. While creating cookies, you must notice...