Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
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.Net > Cookies
Search:
What's New - What's Hot


On The Care and Handling of Cookies        
Total Hits: 50  |  Today: 0 Author: Paul Riley.       Rating:  
Read Reviews | Write Review |   Your Rating: 

What exactly is a cookie anyway? According to Websters Online, a cookie is any one of the following:

1. a small flat or slightly raised cake
2. a : an attractive woman a buxom French cookie who haunts the... colony's one night spot -- Newsweek b : PERSON, GUY a tough cookie
3. cookie : a small file or part of a file stored on a World Wide Web user's computer, created and subsequently read by a Web site server, and containing personal information (as a user identification co...

Maintaining client data with cookies in ASP.NET        
Total Hits: 333  |  Today: 1 Author: Tony Patton       Rating:  
Read Reviews | Write Review |   Your Rating: 

Cookies provide a useful means in Web applications to store user-specific information. JavaScript developers have been doing the bulk of cookie-related work for many years. ASP.NET also provides cookie access through the System.Web namespace. While you shouldn't use cookies to store sensitive data, they're an excellent choice for more trivial data such as color preferences or last-visit date. Cookies are small files stored on the client computer. If you're a Windows user, examine the Cookies dir...

Windowed and Windowless Elements, Cookie Characters, and More        
Total Hits: 16  |  Today: 0 Author: Nancy Michell       Rating:  
Read Reviews | Write Review |   Your Rating: 

I have a windowless JavaScript menu that gets overshadowed by a windowed dropdown list. How can I prevent this?

All windowed elements paint themselves on top of all windowless elements, regardless of what their container wants. However, windowed elements do follow the z-index attribute with respect to each other, just as windowless elements follow the z-index attribute with respect to each other. See How the Z-index Attribute Works for HTML Elements for more on how this works....

On The Care and Handling of Cookies        
Total Hits: 43  |  Today: 0 Author: Paul Riley       Rating:  
Read Reviews | Write Review |   Your Rating: 

What exactly is a cookie anyway? According to Websters Online, a cookie is any one of the following:

1. a small flat or slightly raised cake
2. a : an attractive woman a buxom French cookie who haunts the... colony's one night spot -- Newsweek b : PERSON, GUY a tough cookie
3. cookie : a small file or part of a file stored on a World Wide Web user's computer, created and subsequently read by a Web site server, and containing personal information (as a user identification co...

My Life as a Compressed Cookie        
Total Hits: 55  |  Today: 0 Author: Peter Bromberg       Rating:  
Read Reviews | Write Review |   Your Rating: 

Peter reveals his latest creation, the Compressed Cookie! Serialize entire classes, DataSets to compressed cookies.
The HttpCookie is a much maligned little fellow. Everybody loves him, and everybody hates him. Regardless of your position on this important matter, there can be no dispute that cookies are valuable....

How To Share Authentication Cookies across ASP.NET V1.1 and ASP.NET V2.0 Applications        
Total Hits: 82  |  Today: 0 Author: Scott Guthrie       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, Scott demonstrates how to share authentication cookies across ASP.NET 1.1 and 2.0 applications.
ASP.NET V1.0 introduced a powerful forms-authentication model that provides the infrastructure plumbing necessary to issue authentication tickets to incoming browsers as http cookies, and then automatically decrypt them on each request so that you can identify who the incoming browser user is....

all thing about cookies in asp.net c#        
Total Hits: 51  |  Today: 0 Author: A.Salem.       Rating:  
Read Reviews | Write Review |   Your Rating: 

a cookies are A very small text file placed on your hard drive by a Web Page server. It is essentially your identification card, and cannot be executed as code or deliver viruses. It is uniquely yours and can only be read by the server that gave it to you

cookies purpose is To tell the server that you returned to that Web page

it may help you by saving your time

If you personalize pages, or register for products or services, a cookie helps Microsoft remember who you are....

How to save a small Hashtable in Cookies using ASP.NET        
Total Hits: 953  |  Today: 1 Author: Aadil       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article you will see how to save a limited Hashtable in a browser cookie.visitors and want to save this information for longer intervals so that when the same visitor comes back he will be shown his previous personalized information.I’ve used this technique with one constraint. The space allowed in a web browser for storing cookies is limited and you should also take thin in account when saving data in browser, so I am considering that the hashtable that is to be saved in a cookie is of ...

Create and Read Cookies        
Total Hits: 348  |  Today: 0 Author: John Kilgo       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article we will see how to determine if a user's browser accepts cookies, how to create both session and persistent cookies, how to read cookies, and how to store and read cookies with sub-keys (cookie dictionary). First, the .aspx page, which is mostly labels and explanations of what the program displays....

Exporting Crystal Reports Directly To PDF ASP.NET        
Total Hits: 33  |  Today: 0 Author: Ren van Heerden       Rating:  
Read Reviews | Write Review |   Your Rating: 

This will help code will asp.net developers to export crystal reports directly to pdf.
1st. Set all the CrystalReportViewer Properties
All Toolbar properties set to false (HasCrystalLogo - HasZoomFactorList).
And here is the code....

Find If the User Accept Cookies        
Total Hits: 27  |  Today: 0 Author: AzamSharp       Rating:  
Read Reviews | Write Review |   Your Rating: 

According to the Wikipedia, cookie is a small flat baked pastry. According to my definition it is delicious. But in web development world cookie represents a small text file which is saved either resides in the user’s session or the machine and stores the personalized information....

ASP.NET Cookies FAQ        
Total Hits: 48  |  Today: 1 Author: Peter Bromberg       Rating:  
Read Reviews | Write Review |   Your Rating: 

Some information we've compiled from various sources, along with some of our own discoveries about cookies and ASP.NET. We will continue to add content to this article over time and in response to questions....

COOKIES IN ASP.NET C# VERSION        
Total Hits: 65  |  Today: 0 Author: Peter A. Bromberg       Rating:  
Read Reviews | Write Review |   Your Rating: 

For some reason we seemed to have a terrible time figuring out how to do cookies in ASP.NET. If you look at some of the sample code on the Web, I truly believe it is possible to become thoroughly confused!...

The JonShaft Cookie        
Total Hits: 71  |  Today: 1 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. If you did not connect to this page from my main column page then click here for a live example of the cheesy cookie....

ASP.NET Cookies FAQ        
Total Hits: 113  |  Today: 1 Author: Peter Bromberg       Rating:  
Read Reviews | Write Review |   Your Rating: 

Some information we've compiled from various sources, along with some of our own discoveries about cookies and ASP.NET. We will continue to add content to this article over time and in response to questions....

Find If the User Accept Cookies        
Total Hits: 87  |  Today: 0 Author: AzamSharp       Rating:  
Read Reviews | Write Review |   Your Rating: 

According to the Wikipedia, cookie is a small flat baked pastry. According to my definition it is delicious. But in web development world cookie represents a small text file which is saved either resides in the user’s session or the machine and stores the personalized information....

Basics of Cookies in ASP.NET        
Total Hits: 192  |  Today: 0 Author: Mike Pope       Rating:  
Read Reviews | Write Review |   Your Rating: 

Cookies provide a useful means in Web applications to store user-specific information. For example, when a user visits your site, you can use cookies to store user preferences or other information. When the user visits your Web site another time, the application can retrieve the information it stored earlier. This article provides an overview of working with cookies in ASP.NET applications. I will show you the mechanics of working with cookies in ASP.NET, such as writing them and then reading th...

Browser Cookies and ASP.NET        
Total Hits: 376  |  Today: 0 Author: AspDotNetHeaven       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article explains how to create, read and delete browser cookies using ASP.NET.
Browser cookies are used to store small pieces of information on a client machine. A cookie can store only up to 4 KB of information. Generally cookies are used to store data which user types frequently such as user id and password to login to a site....

Cookies in ASP.NET        
Total Hits: 1223  |  Today: 0       Rating:  
Read Reviews | Write Review |   Your Rating: 

We probably all remember how agonizing it was to create client-side cookies using JavaScript. HttpCookie class offers an easier way to accomplish the task we once though was cumbersome. This article takes a close look at HttpCookie class and how to use it to store cookies on client machine....

Bullet Proof Cookies        
Total Hits: 34  |  Today: 0 Author: Ralph Varjabedian       Rating:  
Read Reviews | Write Review |   Your Rating: 

Security is a hot topic these days; developers are slowly learning more and more how to make their code more secure and how to learn defensive programming techniques. Years ago defensive secure programming used to be a luxury but not anymore. With the increased threats around us in the computer world, we, as developers, should keep in mind security concepts as we do our coding. One type of applications is web applications and specifically in this article I will be talking about ASP.NET applicati...


1  2  3  Next >> 


DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net