It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Tutorials

Log In Sponsors

ASP Tutorials

SHOWING LATEST TUTORIALS
You may have a situation where you have two ASP websites, which could be on different servers, and you need to pass a visitor from the first site to the second site, whilst retaining all the session variables. This is the purpose of the XSess Session tran
This tutorial explains how to set up and manage session and application level scripting using the global.asa file.
This quick and simple tutorial gives you an quick idea on how cookies are set & read by your scripts. Cookies are a quick and easy way to add any form of interaction to your site this tutorial gives you a quick 101 on how to use them in your scripts. A tu
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 detection script written in ASP that you can use on your own site.
There are several ways to maintain state in ASP. This article takes a look at them, and a means to determine which ones are best to employ.
Session variables can store user-specific information for you. This tutorial explain how to configure your server and how they work (and when they don't).
Tutorial explaining how to read and write cookies and why they can come in handy. The tutorial also gives examples of how cookies can be used to personalize webpages.
Cookies can be a good method for passing data between pages and especially for retaining data between sessions. Today, it's pretty safe to assume that anyone who is using your site can use cookies, since nearly every site that is non-static makes use of t
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? Wouldn't it be cool if you could display different pages to each of them? With cookies you can tag them, and know if
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 set. Also, the clients browser must have cookies enabled for them to work. Here is a very simple example of c
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 to prevent multiple entries in to forms. This example will take any input you type in and write it to a cook
Sessions and cookies can be used to persist visitor information. This article shows us how to maintain session state with ASP using a combination of cookies, sessions and the global.asa file.
Cookies are not transferrable across domains; the only domain that can access the cookie is the domain that created it. This article describes solutions to bypass this limitation using Active Server Pages.