Articles   Dev Forums   Personalize   Favorites   Member Login        Active Users:  100
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Wednesday, January 07, 2009
Home
Articles & Samples
Dev Search
Dev Forum
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

Trusted by over 7 million customers!
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP > User Management > Profiles & Cookies
Search
DevASP

What's New
What's Hot

Chocolate Chip Cookies       
Total Hits: 463  |  Today: 0 Author: Isaac Sasson       Rating:  
Read Reviews | Write Review |              Your Rating: 

In this article you are going to learn the mastery of bakery - a recipe for Cookies. Cookies are small text files, which are sent from your server to the client's hard drive.....

Manipulating Cookies in Flash via ASP       
Total Hits: 177  |  Today: 0 Author: Günter Hoffellner       Rating:  
Read Reviews | Write Review |              Your Rating: 

Flash does not support direct setting and reading of cookies. Thus, you either have to take the often published detour of using JavaScript or you just use ASP scripts to set and read cookies...

Cookies       
Total Hits: 368  |  Today: 0 Author: Gary Williams       Rating:  
Read Reviews | Write Review |              Your Rating: 

A useful cookie utility that gives you an overview of how to manage cookies on your website. No cookie monsters here...

Using Cookies       
Total Hits: 1239  |  Today: 0 Author: Quincy Minor       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial will help you by explaining the difference between using permanent cookies and session cookies. HTTP does not support persistent information to help a web server distinguish between clients. Each request for a web page is the same as a new user visiting a new web page. Netscape came up with a technology that will identify each client to the server. It is called a cookie. A cookie is a simple text file that holds information about the user and is saved to the users computer. The coo...

Working with cookies Basics       
Total Hits: 857  |  Today: 0 Author: Iulian Iuga       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is a small ASP (Microsoft Active Server Pages) application that implements basically work with cookies. The project has next main-functionality: Read cookies, Write cookies, Set expired date for cookies....

Determing if cookie is enabled       
Total Hits: 658  |  Today: 0 Author: Scott Mitchell       Rating:  
Read Reviews | Write Review |              Your Rating: 

Before you can use a session variable or anything like that you need to make sure if the user has his or her cookie enabled or not. This article gives a quick look at how to do it....

Detecting if a user can use cookies       
Total Hits: 684  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Using this tutorial you can easily detect if a user browser allows you store and recall browser cookies. All we have to do to create two different asp pages.
...

Detect If Cookies Are "ON"       
Total Hits: 997  |  Today: 0 Author: Mark Burnham       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial offers a quick and easy way to check if your browser accepts cookies. If it does, then you're clear to use session variables when writing ASP scripts. Just follow the sample code to learn how to copy a form and compare Session IDs....

Cookie-less Sessions       
Total Hits: 1004  |  Today: 0 Author: Nannette Thacker       Rating:  
Read Reviews | Write Review |              Your Rating: 

What happens if a client requires you to create a cookieless ASP application? How can you track the user's session from page to page? I'll show you how, with a couple of simple include files, you can store non-durable data for cookie-less sessions....

Using Cookies       
Total Hits: 375  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Cookies are small text files that are placed on the visitor's machine. You've probably been to sites where you were asked to register. One reason why you might be asked to register is so that the site administrator can keep track of how many times you've been to their site. Or, with another scenario, you're going into a chat room and you are asked to enter a nick name. It's very likely that both are using cookies to store this information.
...

Getting The UserName       
Total Hits: 245  |  Today: 0 Author: Robert Chartier       Rating:  
Read Reviews | Write Review |              Your Rating: 

You can use the Request.ServerVariables(LOGON_USER) to get the username of the person accessing your asp page. One thing to note though, for LOGON_USER to contain a username they must not be able to connect anonymously....

Let's bake some cookies!       
Total Hits: 39  |  Today: 0 Author: Alexander Haneng       Rating:  
Read Reviews | Write Review |              Your Rating: 

Learn how to use cookies in your ASP pages. 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? Show an intro and a guide to the newbie. Cut the crap and display what's new to the regular, and show of all the bells and whistles to the boss (you boss will be impressed over that 10MB flash animation, and don't bother to tell him that not ev...

Cookie Debugger       
Total Hits: 110  |  Today: 0 Author: Bhushan Paranjpe       Rating:  
Read Reviews | Write Review |              Your Rating: 

When a page is loaded, the browser uses a piece of memory to store the pages information. When the user exists the browser, this information can be written to a flat file on the client machine or on the server. This flat file is called a 'cookie'....

The JonShaft Cookie Tutorial       
Total Hits: 47  |  Today: 0 Author: Glenn Cook       Rating:  
Read Reviews | Write Review |              Your Rating: 

This Cookie tutorial is designed for anyone interested in learning how to control a cookie with ASP....

To determine if cookies work       
Total Hits: 52  |  Today: 0 Author: Jon Wetzel       Rating:  
Read Reviews | Write Review |              Your Rating: 

This tutorial shows you how to determine if the user's browser is javascript and cookie enabled. Knowing the user's browser configuration lets you adjust your site design to make it more accessible. A printable version of the code is also available....

How to create and retrieve cookies using ASP       
Total Hits: 187  |  Today: 0 Author: PowerASP       Rating:  
Read Reviews | Write Review |              Your Rating: 

Tutorial shows you how to create and retrieve cookies using ASP. They can be used to remember things about a user when they come back to your site. They 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....

Cookies Across Domains       
Total Hits: 50  |  Today: 0 Author: Chris Payne       Rating:  
Read Reviews | Write Review |              Your Rating: 

Cookies are very useful for developers - keeping track of users, performing many functions cheaper than more expensive databases, personalization and customization, etc. Cookies are not transferrable across domains; the only domain that can access the cookie is the domain that created it. This article takes a look at how to bypass this limitation using Active Server Pages....

Detecting disabled cookies       
Total Hits: 61  |  Today: 0 Author: cyScape Support       Rating:  
Read Reviews | Write Review |              Your Rating: 

Learn how to easily and accurately detect disabled session and/or persistent cookies in this lesson. Source code included. This example demonstrates how to check if cookies are enabled using BrowserHawk GetExtPropertiesEx method. Note that this method automatically checks if cookies are *supported* by the browser, then checks to see if cookies are *enabled*. Therefore you do not need to explicitly check whether cookies are supported (by checking the Cookies property) before calling this method....

Cookie Cutter       
Total Hits: 25  |  Today: 0 Author: Soren Winslow       Rating:  
Read Reviews | Write Review |              Your Rating: 

A script that will display the cookies for the domain that it resides along with their values and key values if they exist. Great utility to check if the cookies are holding the values you expected....

Cookies & Response.Redirect       
Total Hits: 2131  |  Today: 0 Author: Rob Chartier       Rating:  
Read Reviews | Write Review |              Your Rating: 

You must also remember that if you set the cookie, you must make sure that the code completes the page...that is, you do not buffer and then send out new content..this would apply if you had something like "response.redirect"...


1  2  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com