Advertisment
Automated content management is a must for many web sites. It's difficult to provide fresh new content without a standard automated system....
This article discusses how the 'Print this Page' option works. (The 'Print this Page' option turns articles into a...
Web pages usually print pretty lousy. Typically, background colors are not displayed (unless you change the browser settings) and depending on site...
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...
This is a common feature on websites showing that there are x visitors on site at present . This example demonstartes how this is achieved
Views: 1048 | | by Stephen
ASP - Counters
This is a slightly better version of your standard text counter , this example only increments a count once per session whereas a normal counter...
Views: 989 | | by Jarry
ASP - Counters
This example uses a flat text file to store the count . Shows the basics of file usage in ASP.
Views: 1069 | | by Isac
ASP - Counters
Want to show current number of users on your ASP page? This article lets you show a way to access IIS/ASP performance values from ASP. Source to...
Views: 977 | | by Tutorial
ASP - Counters
This article illustrates a technique to provide dynamic content generated from an ASP page onto a static HTML page. Specifically it explains how to...
Views: 900 | | by Sarah
ASP - Counters