HOME Javascript HTML C# Cookie Print Popup Blocking Form Cookies C# Print setTime GetCookieVal C# CGI Example C# CGI Sample C# CGI CGI cookieEnabled if HttpCookie newCheck getTime Redirection GetEnvironmentVariable QUERY_STRING Cookies Substring List Character CallBackMethod HtmlPrinter CallBack C# List BinarySearch Javascript Cookie LIFO Hash MoveNext OnFilePrint OnMediaChanged OnPrintPage PageSetupDialog PDF PDF Creation addEvent FileSystemWatcher Dequeue document.cookie enable cookie EnableRaisingEvent Enqueue FIFO FileStream .NET Print FileSystemEventHandler Hashtable WriteLine cookieVal GetEnumerator Cookie Redirection GetFieldByName GetLineBreakCharPosition ContainsValue

HTTPCOOKIE.ZIP

Using C# With Cookies   (created at Aug 26, 2007)   79  

A code snippet posted on aspcs about accessing and writing cookies using C#./* Read shopper id from client cookie */public static bool GetCurrentShopperId(ref string id,System.Web.HttpRequest request){try{HttpCookie cookie = request.Cookies["iparts_pa"];if...

How To Read And Write A Cookie   (created at Aug 26, 2007)   41  

A post on aspngbeta about readingwriting a cookie in C#//To setHttpCookie cookie;String UserID = "foo";cookie = new HttpCookie("UserID");cookie.Values.Add("UserID",UserID);Response.Cookies.Add(cookie);//To readHttpCookie cookie;cookie = Request.Cookies["Us...

Address Book   (created at Aug 29, 2007)   59  

Saves an address book database as a cookie on the user's computer. The author explains that although the actual example may not be particularly useful, the underlying code could be very beneficial for use in other projects.Greeting For The Time Of Day   (created at Aug 29, 2007)   90   Displays a changeable greeting depending on the ""users system clock"".