What are benefits and limitations of using Cookies? - ASP.NET

What are benefits and limitations of using Cookies?

Advantages:

- They are simple to use.
- Light in size, thus occupy less memory.
- Stores server information on client side
- Data need not to be sent back to server.
- Cookies persist for much longer period of time than a session.

Disadvantages:

- Since they are stored on the client side in plain text, they are not secure.
- Number of cookies that can be stored and their size is limited.
- They don't work if security level is set too high in browser.
- Some people might just disable cookies on their browsers.
What is QueryString? Benefits and limitations of using querystring - ASP.NET
What is QueryString? Benefits and limitations of using querystring - Querystring is way to transfer information from one page to another through the URL..
What is Absolute and Sliding expiration in .NET? - ASP.NET
Absolute and Sliding expiration in .NET - Absolute and sliding expiration are two Time based expiration strategies...
Concepts and capabilities of cross page posting - ASP.NET
concepts of cross page posting - Cross Page Posting: It refers to the scenario where on event of some controls posts...
Post your comment