Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are benefits and limitations of using Cookies?
.NET INTERVIEW QUESTIONS - What are benefits and limitations of using Cookies?
✍: Guest
Following are benefits of using cookies for state management :-
* No server resources are required as they are stored in client.
* They are light weight and simple to use
Following are limitation of using cookies :-
* Most browsers place a 4096-byte limit on the size of a cookie, although support for 8192-byte cookies is becoming more common in the new browser and
client-device versions available today.
* Some users disable their browser or client device’s ability to receive cookies, thereby limiting the use of cookies.
* Cookies can be tampered and thus creating a security hole.
* Cookies can expire thus leading to inconsistency.
Following is an example code for implementing cookies:-
Request.Cookies.Add(New HttpCookie(“name”, “user1”))
2009-07-21, 5498👍, 0💬
Popular Posts:
How To Create an Add-to-Netvibes Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News ...
How To Analyze Tables with "mysqlcheck"? - MySQL FAQs - Administrator Tools for Managing MySQL Serve...
How To Give a User Read-Only Access to a Database? - MySQL FAQs - Managing User Accounts and Access ...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...
Can include files be nested? The answer is yes. Include files can be nested any number of times. As ...