What is State Management in .Net and how many ways are there
to maintain a state in .Net?
Answers were Sorted based on User's Feedback
Answer / sapna
In .net state management means request send by the client
can remember state of the previous request means
maintaining the state of the request.
The ways to maintain the state in asp.net are
server side state management like
1)session management
2)application
client side state management like
1)cookies
2)Hidden fields
Is This Answer Correct ? | 20 Yes | 4 No |
Answer / krupali
state management is the art of retaining information between
requests.
There are two types of statemanagement options in .net?
1)client side state management.
2)Server side state management.
In client side state management.
1)view state
2)query string
3)custom cookies
In server side state management.
1)Session state.
2)application state.
Is This Answer Correct ? | 17 Yes | 2 No |
Answer / shobha
State management in ASP.Net
we can maintain state in ASP.Net in two ways.
1.Client Side Management.
2.Server Side Management.
1.Client Side Management:
a) Cookies
b) Hidden Variable
c) View State
d) Query String
2.Server Side Management
a) Sessions
b) Application State
c) Database
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / sunil
keep in mind
client side state management are
1.Cookies
2.ViewState
3.Hidden Variable
4.Query string
Server Side statemanagement
1.Session state
2.Application state
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / k.indumathi
we can maintain state in ASP.Net in two ways.
1.Client Side Management.
2.Server Side Management.
1.Client Side Management
1.View state
2.Control state
3.Hidden fields
4.Cookies
5.Query strings
2.Server Side Management.
1.Application state
2.Session state
3.Profile Properties
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / haider zaidi
State Management is the process by which the state and
information of a page can be maintained over multiple requests.
ASP.NET provides several techniques to maintain the state of
the information.
1.Client Side Management.
2.Server Side Management.
1.Client Side Management:
a) Cookies b) Hidden Variable
c) View State d) Query String
2.Server Side Management
a) Sessions
b) Application State
c) Database
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between a candidate key and primary key?
what is usercontrol how we can use acess the controls that are present in the usercontrol in the aspx page suppose we have 2 text boxes in a user control how u can acess the 2 textboxs in the aspx page
What are the 3 levels at which content pages can be attached to Master Page?
Explain the difference between or and orelse?
What is the use of mcommand ? mcommand.fill(ds,"orderdetails");
How do session tokens work?
What language is asp.net written in?
what is dumpbin.exe?
What is asp.net localization?
What is difference between asp state management and asp.net state management?
Guys can anobody tell what is Conditional Bloating in asp.net ??
Which keyword you should use for class not to extend? Which keyword to be used for making the class accessible within the assembly only what are the authentication mode of ASP.NET How will you call a JavaScript function using code-behind? How will you define the Session Timeout? What are the methods to validate client-side whether the input is a correct Date format? You want to write a log when ASP.NET application starts. Which is the best place to write that peice of code? What are the page load events and what is there order? What is the difference between abstract class and interface? What are the differences between DataSet and DataReader? What are the two properties other than DataSource, which is required to populate the Drop Down Menu? What is difference between String and StringBuilder Classes? What are differences between Custom control and User control?