Answer Posted / om shivaya namaha
in Asp.Net we can two types of Sate Management
1. ClientSide State Managment :- It will occur in the
Clients Systems it wont use any server resourses it can be
reprasented in 5 types
i)View State :- It will store all the controls properties
and data during the postback operation
ii)Control state :- for custum control viewstate property is
not available so all the infromation about the control is
saved in the ControlState
iii)hiddenfilds:- hiddenfilds are used to store the data on
the client side
iv)QueryString :- by using QueryString we can pass the
values through the URL
v)Cookies:- Cookies can store the values in the client side
untill the application is closed the value of the cooke is
same it wont change
2. ServerSide statemanagment :-It is used to store the data
on the Server it is of 2 typew
i) Session state :- it is used to store the single user
information on the server untill the user log off it will
maintan the values in the server once the user logout and
another user login the session variables will maintain
untill he logs out
ii) Application State :- If we set the values in Global.aspx
page Aplication_start like that events this values can be
acessed through out all the pages in the application
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Describe how passport authentication works.
Define the steps to set up validation control.
What is the page life cycle in asp.net?
What is difference between session and viewstate?
Why mvc is better than asp.net? : Asp.Net MVC
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
Explain the code Access Security (CAS) in .net Framework?
What are the session variables?
Differentiate between authentication and authorization.
How many types of cache are there?
Differentiate between a hyperlink control and a linkbutton control.
What are the difference between function and stored procedure in .net programming language?
What is the difference between response.redirect and server.transfer?
What is httpresponse?
Explain asp.net mvc request life cycle? : asp.net mvc