ASP.NET interview questions: – Can u explain the benefits and limitations of using Cookies?

A simple but most frequently asked ASP.NET interview question.

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.

Below is sample code of implementing cookies

Request.Cookies.Add(New HttpCookie (“name”, “user1”))

See the following MEF (Managed Extensible Framework) & it’s practically implemented video: -

Explore for more ASP.NET interview questions tutorials.

Regards,
From Author’s blog see other blog links ASP.NET interview questions

About these ads

About c# and .NET Interview questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview.
This entry was posted in .net, .NET and C# interview questions and answers, .NET and C# training, Asp.Net Interview Questions, ASP.NET training, Cookies, Csharp interview questions, programming interview questions and tagged , , , , , . Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s