Click here to Skip to main content
15,915,770 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Difference between client side state management and server side state management?
Posted
Updated 2-May-18 22:56pm

You question itself has answer, check this article
A Beginner's Tutorial on ASP.NET State Management[^]
 
Share this answer
 
In Client-Side State Management, the state related
information will directly get stored on the client-side. In other words, This maintains information on the client's machine using Cookies, View State, and Query Strings.
In Server side state management, all the information is stored in the user
memory. Due to this functionality there is more secure domains at the
server side in comparison to Client-Side State Management. In other words, This kind of mechanism retains state in the server.
Client side state management is less secure than server side


For more information, check the following link

ASP.NET Client-side state management and Server-side state management


http://msdn.microsoft.com/en-us/library/75x4ha6s.aspx
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900