Answer Posted / sumit kumar gaud
as it is known to all that asp works over http. and http is a stateless protocol that means server does not have any information about client.
To manage this asp .net provides state management. It can be managed in two ways
1. Client Side
2. Server Side.
for detail visit
http://msdn.microsoft.com/en-us/magazine/cc300437.aspx#S1
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Define a static class?
What are the two properties that are common on every validation control?
What’s difference between “optimistic” and “pessimistic” locking?
Is viewstate secure?
Elaborate differentiation between Cache and Application?
Is it possible to apply themes to an asp.net application? If yes, then how?
Explain how can we inherit a static variable?
Where is asp.net session stored?
Explain how viewstate is being formed?
How can we inherit a static member?
Why session is more secure than cookies?
Can the unique key be null?
Can user control be stored in library?
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
what is loosely coupled solution? How it can be used?