Articles   Dev Forums   Personalize   Favorites   Member Login   ASP Hosting      Active Users:  123
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Monday, May 12, 2008
Home
Articles & Samples
ASP Hosting
Dev Search
Dev Forum
Add Your Articles
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

ESET
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 > Cookies
Search
DevASP

What's New
What's Hot

Cookie Examples Using ASP       
Total Hits: 2951  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

There are many sites on the web that will ask you to register in order to get some level of enhanced access. Once you have registered, you are given a username and password. the next time you visit the site, you are asked to enter these before being granted access. Some sites will give the option of saving your username and password as a cookie, so that you will automatically be logged in the next time you visit. The example below will, hopefully, illustrate this....

Detect If Cookies Are "ON"       
Total Hits: 972  |  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....

Using Cookies       
Total Hits: 1210  |  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...

Cookies & Response.Redirect       
Total Hits: 2079  |  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"...

Code Sample: Checking for Scripting and Cookies       
Total Hits: 2219  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Michael J. Ryan provides a simple VBScript that checks to see if a browser has scripting and cookies enabled.
...

How to use cookies in ASP       
Total Hits: 80  |  Today: 0 Author: Todorov       Rating:  
Read Reviews | Write Review |              Your Rating: 

What is a cookie? A cookie is a small piece of information sent to a user’s browser by a web server. If a web site is programmed in a certain manner, its server will send information to your browser, which is stored on your hard drive as a text file. If you visit the same site later, the server can retrieve the cookie from your computer. Cookies are used to track web site visitors and retain user preferences. It’s fairly easy to use cookies in ASP and now I’ll show you how can you do that. Consi...

Client-side Cookies, Unchecking Checkboxes, Microsoft.com Toolbar, WebBrowser Control, and More       
Total Hits: 154  |  Today: 0 Author: Robert Hess       Rating:  
Read Reviews | Write Review |              Your Rating: 

I have a series of pages on my Web site, with different want ads on each page. Users click on the ads they want to see. In order for me to identify users and put them in touch with the person who placed the ad, I request that users register with a user ID, password, and e-mail address, which they keep for future visits. Before registered users look at the ads, I would like them to enter their user ID and password. Then, when they click on an ad, a form is sent to me with the user ID, password, a...

How to use cookies in ASP       
Total Hits: 104  |  Today: 0 Author: aspdev       Rating:  
Read Reviews | Write Review |              Your Rating: 

What is a cookie? A cookie is a small piece of information sent to a user’s browser by a web server. If a web site is programmed in a certain manner, its server will send information to your browser, which is stored on your hard drive as a text file. If you visit the same site later, the server can retrieve the cookie from your computer. Cookies are used to track web site visitors and retain user preferences. It’s fairly easy to use cookies in ASP and now I’ll show you how can you do that....

HOWTO: Disable Cookies That Are Sent by Active Server Pages       
Total Hits: 293  |  Today: 0 Author: Microsoft       Rating:  
Read Reviews | Write Review |              Your Rating: 

Active Server Pages (ASP) uses cookies to track SessionIDs. As a result, the browser is sent a cookie when a new session is created. Typically this occurs the first time a particular client requests an ASP page in your Web application. If Internet Explorer is configured to "Warn before accepting cookies," you will see a warning dialog box when this SessionID cookie is sent to the browser. This article explains how to prevent ASP from sending these cookies....

Detecting if a user can use cookies       
Total Hits: 667  |  Today: 1       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.
...

Cookie-less Sessions       
Total Hits: 983  |  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: 353  |  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.
...

HOWTO: Disable Cookies That Are Sent by Active Server Pages       
Total Hits: 1137  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

Active Server Pages (ASP) uses cookies to track SessionIDs. As a result, the browser is sent a cookie when a new session is created. Typically this occurs the first time a particular client requests an ASP page in your Web application. If Internet Explorer is configured to "Warn before accepting cookies," you will see a warning dialog box when this SessionID cookie is sent to the browser. This article explains how to prevent ASP from sending these cookies.

...

Cookies with ASP       
Total Hits: 2156  |  Today: 0 Author: Steven Smith       Rating:  
Read Reviews | Write Review |              Your Rating: 

Simple Demonstration of reading and setting cookies with ASP....

Cookie Collections       
Total Hits: 1716  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

The Cookies collection sets the value of a cookie. If the specified cookie does not exist, it is created. If the cookie exists, it takes the new value and the old value is discarded....

ASP 101 - Samples.       
Total Hits: 1971  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This table lists all of our cookies on your computer....

Session Cookies       
Total Hits: 198  |  Today: 0 Author: http://www.codefixer.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

Session cookies are stored in the visitor's computers memory. They are deleted once the visitor closes his browser or after a period of inactivity, usually 20 minutes by default. Below is the syntax for creating a session cookie and assigning a value to it. syntax:Session(“SessionName”)=value...

Cookies With ASP       
Total Hits: 393  |  Today: 0 Author: aspalliance       Rating:  
Read Reviews | Write Review |              Your Rating: 

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 them(including all ASP sites that use sessions). This article covers how to set and read cookies....

Working with cookies Basics       
Total Hits: 821  |  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....

Making them Cookies Right       
Total Hits: 467  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This HOWTO explains what is needed to make a good cookie. Not the kind you eat, but the kind that makes your web site richer and more functional. Written in English...


1  2  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com