Posts Tagged ‘state management’

View State View State is one of the most important and useful client side state management mechanism. It can store the page value at the time of post back (Sending and Receiving information from Server) of your page. ASP.NET pages provide the ViewState property as a built-in structure for automatically storing values between multiple requests [...]

Caching Caching is a technique where we can store frequently used data and Web pages are stored temporarily on local hard disks for later retrieval. This technique improves the access time when multiple users access a Web site simultaneously or a single user accesses a Web site multiple times. Caching for Web applications can occur [...]

Cookies A cookie is a small file which is stored in the visitor’s hard disk drive. This is helpful for storing small and trivial information. A cookie can have a maximum size of 4KB. The web server creates a cookie, attaches an additional HTTP header to the response, and sends it to the browser. The [...]

QueryString This is the most simple and efficient way of maintaining information across requests. The information you want to maintain will be sent along with the URL. A typical URL with a query string looks like www.somewebsite.com/search.aspx?query=india The URL part which comes after the ? symbol is called a QueryString. QueryString has two parts, a [...]

HTTP Protocol and the Need for State Management Techniques Hi friends, in this blog I would like to tell something about state management techniques used in ASP.NET which are very important in building web applications. The whole topic is very lengthy, so the contents are divided into different parts for easy reading. Hope everyone will [...]