How To Create Forms Authentication Cookies
What is Forms Authentication Cookies: Forms authentication cookie is the container for forms authentication ticket. The ticket is passed as the value of the forms authentication cookie with each request and is used by forms authentication, on ... המשך לקרוא>
Michael Neiter , 05-31-2009 14:00
How to Get Data from Resource Files in ASP.NET 2.0
In this post I will present how to access data from resource files in an ASP.NET 2.0 web application. Example: The following code creates ResourceManager object and loads data from a resource file. ResourceManager myResourceManager; ResourceSet ... המשך לקרוא>
Michael Neiter , 03-29-2009 23:30
How to Compress and Decompress using GzipStream object in C#
Below is the implementation of the compress and decompress methods using GzipStream class. Example: The method shows how to compress a text. public static string Compress( string text) { byte [] buffer = Encoding.UTF8.GetBytes(text); MemoryStream ... המשך לקרוא>
Michael Neiter , 03-24-2009 11:00
Implement the ICallbackEventHandler in ASP.NET 2.0
What is ICallbackEventHandler ASP.NET 2.0 introduced an interface named ICallbackEventHandler (System.Web.UI.ICallbackEventHandler) to allow asynchronous communication with the server. Unlike Postback, in Callback only user defined information ... המשך לקרוא>
Michael Neiter , 03-17-2009 10:25
Page 1 of 1 (4 items)