Hits Today: 1 Total: 9157 | Updated: 11/7/2001 | |
 | 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! Author: Peter A. Bromberg, Ph.D. Code: ASP.NET Beta 2 & C# |
Hits Today: 1 Total: 786 | Updated: 1/14/2008 | |
 | Learn the basic operations for manipulating cookies. Then learn approaches to storing multiple values in a single cookie using name-value pairs called subkeys. Next, learn how to limit the scope of cookies to a particular application domain or folder. Author: Chris Pels Code: ASP.NET v3.5 & VB |
Hits Today: 1 Total: 14391 | Updated: 2/16/2003 | |
 | 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. Author: Mike Pope Code: ASP.NET v1.0 & VB |
Hits Today: 1 Total: 6658 | Updated: 11/11/2000 | |
 | Like everything else in ASP+, the cookies themselves are the same, but they're handled just a little bit differently. This code will give you a taste of the new style by using the HttpCookie object to set, read, and delete a cookie. Code: ASP.NET Beta 1 & VB | |  |
 |
Hits Today: 1 Total: 805 | Updated: 9/15/2006 | |
 | Websites typically use session cookies to ensure that users are recognized when they move from page to page within one site and that any information you have entered is remembered. We will introduce you how to work with the cookies in ASP.NET 2.0 and C#. Author: AspNetTutorials.com Code: ASP.NET v2.0 & C# |
Hits Today: 1 Total: 550 | Updated: 1/14/2007 | |
 | When a browser makes a request to the server, it sends the cookies for that server along with the request. In this ASP.NET applications, we can read the cookies using the HttpRequest object, which is available as the Request property of Page class. Author: ASPNET Tutorials Code: ASP.NET v2.0 & VB |
Hits Today: 1 Total: 5925 | Updated: 9/25/2002 | |
 | Below is some quick code to set and display cookies. The HttpCookie and HttpCookieCollection classes allow you to access and edit cookies which have the following properties... Author: superdotnet.com Code: ASP.NET v1.0 & VB | |  | |
Hits Today: 1 Total: 1224 | Updated: 4/26/2006 | |
 | In this article I will try to explain you how you can read/write cookies using ASP.Net. Now days, working with internet are very common. And many of the internet users visit million of sites daily. |
Hits Today: 1 Total: 3115 | Updated: 2/2/2003 | |
 | Cookies can provide a real convenience to both visitors and programmers of a Web-based application. However, cookies are problematic from a security point of view for two reasons. Author: Wayne Plourde Code: ASP.NET v1.0 & VB |
|